| /freebsd-13-stable/contrib/apr-util/crypto/ |
| HD | crypt_blowfish.c | 644 static char *BF_crypt(const char *key, const char *setting, in BF_crypt() argument 673 if (setting[0] != '$' || in BF_crypt() 674 setting[1] != '2' || in BF_crypt() 675 setting[2] < 'a' || setting[2] > 'z' || in BF_crypt() 676 !flags_by_subtype[(unsigned int)(unsigned char)setting[2] - 'a'] || in BF_crypt() 677 setting[3] != '$' || in BF_crypt() 678 setting[4] < '0' || setting[4] > '1' || in BF_crypt() 679 setting[5] < '0' || setting[5] > '9' || in BF_crypt() 680 (setting[4] == '1' && setting[5] > '7') || in BF_crypt() 681 setting[6] != '$') { in BF_crypt() [all …]
|
| HD | apr_passwd.c | 193 char setting[40]; in apr_bcrypt_encode() local 195 salt_len, setting, sizeof(setting)) == NULL) in apr_bcrypt_encode() 197 if (_crypt_blowfish_rn(pw, setting, out, out_len) == NULL) in apr_bcrypt_encode()
|
| HD | crypt_blowfish.h | 20 extern int _crypt_output_magic(const char *setting, char *output, int size); 21 extern char *_crypt_blowfish_rn(const char *key, const char *setting,
|
| /freebsd-13-stable/sys/contrib/device-tree/Bindings/leds/backlight/ |
| HD | arcxcnn_bl.txt | 14 - arc,led-config-0: setting for register ILED_CONFIG_0 15 - arc,led-config-1: setting for register ILED_CONFIG_1 16 - arc,dim-freq: PWM mode frequence setting (bits [3:0] used) 17 - arc,comp-config: setting for register CONFIG_COMP 18 - arc,filter-config: setting for register FILTER_CONFIG 19 - arc,trim-config: setting for register IMAXTUNE
|
| /freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/ |
| HD | crypto_scrypt-common.c | 109 escrypt_parse_setting(const uint8_t *setting, in escrypt_parse_setting() argument 114 if (setting[0] != '$' || setting[1] != '7' || setting[2] != '$') { in escrypt_parse_setting() 117 src = setting + 3; in escrypt_parse_setting() 138 const uint8_t *setting, uint8_t *buf, size_t buflen) in escrypt_r() argument 153 src = escrypt_parse_setting(setting, &N_log2, &r, &p); in escrypt_r() 158 prefixlen = src - setting; in escrypt_r() 183 memcpy(dst, setting, prefixlen + saltlen); in escrypt_r()
|
| HD | pwhash_scryptsalsa208sha256.c | 192 char setting[crypto_pwhash_scryptsalsa208sha256_STRSETTINGBYTES + 1U]; in crypto_pwhash_scryptsalsa208sha256_str() local 209 if (escrypt_gensalt_r(N_log2, r, p, salt, sizeof salt, (uint8_t *) setting, in crypto_pwhash_scryptsalsa208sha256_str() 210 sizeof setting) == NULL) { in crypto_pwhash_scryptsalsa208sha256_str() 218 (const uint8_t *) setting, (uint8_t *) out, in crypto_pwhash_scryptsalsa208sha256_str()
|
| /freebsd-13-stable/sys/contrib/device-tree/Bindings/phy/ |
| HD | apm-xgene-phy.txt | 9 - #phy-cells : Shall be 1 as it expects one argument for setting 19 Two set of 3-tuple setting for each (up to 3) 25 Two set of 3-tuple setting for each (up to 3) 28 gain control. Two set of 3-tuple setting for each 31 - apm,tx-amplitude : Amplitude control. Two set of 3-tuple setting for 36 3-tuple setting for each (up to 3) supported link 40 3-tuple setting for each (up to 3) supported link 44 3-tuple setting for Gen1, Gen2, and Gen3. Range is 57 NOTE: PHY override parameters are board specific setting.
|
| /freebsd-13-stable/secure/lib/libcrypt/ |
| HD | crypt-des.c | 590 crypt_des(const char *key, const char *setting, char *buffer) in crypt_des() argument 612 if (*setting == _PASSWORD_EFMT1) { in crypt_des() 619 count |= ascii_to_bin(setting[i]) << ((i - 1) * 6); in crypt_des() 622 salt |= ascii_to_bin(setting[i]) << ((i - 5) * 6); in crypt_des() 640 buffer = stpncpy(buffer, setting, 9); in crypt_des() 649 salt = (ascii_to_bin(setting[1]) << 6) in crypt_des() 650 | ascii_to_bin(setting[0]); in crypt_des() 652 *buffer++ = setting[0]; in crypt_des() 659 *buffer++ = setting[1] ? setting[1] : setting[0]; in crypt_des()
|
| /freebsd-13-stable/sys/contrib/octeon-sdk/ |
| HD | cvmx-asxx-defs.h | 403 uint64_t setting : 5; /**< Setting to place on the RXCLK (GMII receive clk) member 407 uint64_t setting : 5; 428 uint64_t setting : 5; /**< Setting to place on the RXD (GMII receive data) member 432 uint64_t setting : 5; 547 uint64_t setting : 5; /**< Setting to place on the RXD (MII receive data) member 551 uint64_t setting : 5; 664 uint64_t setting : 5; /**< The rld_dll setting bypass value */ member 666 uint64_t setting : 5; 883 uint64_t setting : 5; /**< RLDCK90 DLL Setting(debug) */ member 885 uint64_t setting : 5; [all …]
|
| HD | cvmx-spx0-defs.h | 105 uint64_t setting : 17; /**< Core PLL setting */ member 107 uint64_t setting : 17;
|
| /freebsd-13-stable/crypto/openssl/doc/man3/ |
| HD | SSL_CTX_set_quiet_shutdown.pod | 23 SSL_CTX_get_quiet_shutdown() returns the "quiet shutdown" setting of B<ctx>. 26 B<mode>. The setting stays valid until B<ssl> is removed with 31 SSL_get_quiet_shutdown() returns the "quiet shutdown" setting of B<ssl>. 39 When setting the "quiet shutdown" flag to 1, L<SSL_shutdown(3)> 55 setting.
|
| /freebsd-13-stable/contrib/llvm-project/lldb/source/Core/ |
| HD | UserSettingsController.cpp | 113 bool Properties::IsSettingExperimental(llvm::StringRef setting) { in IsSettingExperimental() argument 114 if (setting.empty()) in IsSettingExperimental() 118 size_t dot_pos = setting.find_first_of('.'); in IsSettingExperimental() 119 return setting.take_front(dot_pos) == experimental; in IsSettingExperimental()
|
| /freebsd-13-stable/crypto/openssl/doc/man1/ |
| HD | version.pod | 35 All information, this is the same as setting all the other flags. 55 Platform setting. 59 OPENSSLDIR setting. 63 ENGINESDIR setting.
|
| /freebsd-13-stable/sys/dev/ath/ath_hal/ar5212/ |
| HD | ar5212_misc.c | 427 ar5212SetAntennaSwitch(struct ath_hal *ah, HAL_ANT_SETTING setting) in ar5212SetAntennaSwitch() argument 434 ahp->ah_antControl = setting; in ar5212SetAntennaSwitch() 435 ahp->ah_diversity = (setting == HAL_ANT_VARIABLE); in ar5212SetAntennaSwitch() 438 return ar5212SetAntennaSwitchInternal(ah, setting, chan); in ar5212SetAntennaSwitch() 931 uint32_t capability, uint32_t setting, HAL_STATUS *status) in ar5212SetCapability() argument 940 if (setting) in ar5212SetCapability() 949 if (setting) in ar5212SetCapability() 964 if (setting) in ar5212SetCapability() 971 ahp->ah_diversity = (setting != 0); in ar5212SetCapability() 979 v |= SM(setting, AR_PHY_RESTART_DIV_GC); in ar5212SetCapability() [all …]
|
| /freebsd-13-stable/sys/contrib/device-tree/src/arm64/renesas/ |
| HD | r8a77951-salvator-xs.dts | 137 * (when SW31 is the default setting on Salvator-XS). 138 * - If SW31 is the default setting, you cannot use USB2.0 ch3 on 140 * Hence the SW31 setting must be changed like 2) below. 141 * 1) Default setting of SW31: ON-ON-OFF-OFF-OFF-OFF: 143 * 2) Changed setting of SW31: OFF-OFF-ON-ON-ON-ON:
|
| /freebsd-13-stable/sys/contrib/device-tree/Bindings/power/supply/ |
| HD | bq25890.txt | 22 minimum-sys-voltage setting (in uV); 31 input current will be the lower between the resistor setting and the IINLIM 32 register setting; 35 the default setting will be used (120 degrees);
|
| /freebsd-13-stable/sys/dev/ath/ath_hal/ar5416/ |
| HD | ar5416_misc.c | 484 u_int32_t capability, u_int32_t setting, HAL_STATUS *status) in ar5416SetCapability() argument 490 setting &= ath_hal_eepromGet(ah, AR_EEP_RXMASK, NULL); in ar5416SetCapability() 491 pCap->halRxChainMask = setting; in ar5416SetCapability() 492 if (owl_get_ntxchains(setting) > 2) in ar5416SetCapability() 498 setting &= ath_hal_eepromGet(ah, AR_EEP_TXMASK, NULL); in ar5416SetCapability() 499 pCap->halTxChainMask = setting; in ar5416SetCapability() 500 if (owl_get_ntxchains(setting) > 2) in ar5416SetCapability() 508 if (setting) { in ar5416SetCapability() 523 return ar5212SetCapability(ah, type, capability, setting, status); in ar5416SetCapability()
|
| /freebsd-13-stable/usr.sbin/bsdconfig/networking/share/ |
| HD | media.subr | 117 local setting 118 f_sprintf setting "$msg_current_options" \ 120 f_noyes "$msg_nfs_mounts_may_cause_hang" "$setting" || 166 local setting 167 f_sprintf setting "$msg_current_options" \ 169 f_noyes "$msg_nfs_mounts_may_cause_hang" "$setting" ||
|
| /freebsd-13-stable/contrib/netbsd-tests/lib/libcurses/tests/ |
| HD | cbreak | 2 # setting noecho stops getch setting cbreak itself so we should need
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| HD | RISCVInstrFormatsC.td | 38 // is responsible for setting the appropriate bits in the Inst field. 53 // is responsible for setting the appropriate bits in the Inst field. 79 // is responsible for setting the appropriate bits in the Inst field. 94 // is responsible for setting the appropriate bits in the Inst field. 161 // is responsible for setting the appropriate bits in the Inst field. 176 // is responsible for setting the appropriate bits in the Inst field. 192 // is responsible for setting the appropriate bits in the Inst field. 207 // is responsible for setting the appropriate bits in the Inst field.
|
| /freebsd-13-stable/sys/contrib/device-tree/Bindings/pinctrl/ |
| D | fsl,imx53-pinctrl.txt | 9 setting. The format is fsl,pins = <PIN_FUNC_ID CONFIG>, PIN_FUNC_ID is a 10 pin working on a specific function, CONFIG is the pad setting value like
|
| D | fsl,imx50-pinctrl.txt | 9 setting. The format is fsl,pins = <PIN_FUNC_ID CONFIG>, PIN_FUNC_ID is a 10 pin working on a specific function, CONFIG is the pad setting value like
|
| D | fsl,imx51-pinctrl.txt | 9 setting. The format is fsl,pins = <PIN_FUNC_ID CONFIG>, PIN_FUNC_ID is a 10 pin working on a specific function, CONFIG is the pad setting value like
|
| D | fsl,imx35-pinctrl.txt | 9 setting. The format is fsl,pins = <PIN_FUNC_ID CONFIG>, PIN_FUNC_ID is a 10 pin working on a specific function, CONFIG is the pad setting value like
|
| D | fsl,imx6q-pinctrl.txt | 9 setting. The format is fsl,pins = <PIN_FUNC_ID CONFIG>, PIN_FUNC_ID is a 10 pin working on a specific function, CONFIG is the pad setting value like
|