Home
last modified time | relevance | path

Searched refs:setting (Results 1 – 25 of 618) sorted by relevance

12345678910>>...25

/freebsd-12.1/contrib/apr-util/crypto/
H A Dcrypt_blowfish.c673 if (setting[0] != '$' || in BF_crypt()
674 setting[1] != '2' || in BF_crypt()
675 setting[2] < 'a' || setting[2] > 'z' || in BF_crypt()
677 setting[3] != '$' || in BF_crypt()
678 setting[4] < '0' || setting[4] > '3' || in BF_crypt()
679 setting[5] < '0' || setting[5] > '9' || in BF_crypt()
680 (setting[4] == '3' && setting[5] > '1') || in BF_crypt()
681 setting[6] != '$') { in BF_crypt()
686 count = (BF_word)1 << ((setting[4] - '0') * 10 + (setting[5] - '0')); in BF_crypt()
788 if (setting[0] == '*' && setting[1] == '0') in _crypt_output_magic()
[all …]
H A Dapr_passwd.c193 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()
H A Dcrypt_blowfish.h20 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-12.1/sys/contrib/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/
H A Dcrypto_scrypt-common.c109 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()
H A Dpwhash_scryptsalsa208sha256.c192 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-12.1/contrib/gcc/
H A Dintegrate.c165 set_block_abstract_flags (tree stmt, int setting) in set_block_abstract_flags() argument
170 BLOCK_ABSTRACT (stmt) = setting; in set_block_abstract_flags()
175 set_decl_abstract_flags (local_decl, setting); in set_block_abstract_flags()
180 set_block_abstract_flags (subblock, setting); in set_block_abstract_flags()
190 set_decl_abstract_flags (tree decl, int setting) in set_decl_abstract_flags() argument
192 DECL_ABSTRACT (decl) = setting; in set_decl_abstract_flags()
198 DECL_ABSTRACT (arg) = setting; in set_decl_abstract_flags()
201 set_block_abstract_flags (DECL_INITIAL (decl), setting); in set_decl_abstract_flags()
H A Dopts.c1432 set_Wextra (int setting) in set_Wextra() argument
1434 extra_warnings = setting; in set_Wextra()
1435 warn_unused_value = setting; in set_Wextra()
1441 if (setting == 0) in set_Wextra()
1449 set_Wunused (int setting) in set_Wunused() argument
1451 warn_unused_function = setting; in set_Wunused()
1452 warn_unused_label = setting; in set_Wunused()
1458 maybe_warn_unused_parameter = setting; in set_Wunused()
1459 warn_unused_parameter = (setting && extra_warnings); in set_Wunused()
1460 warn_unused_variable = setting; in set_Wunused()
[all …]
/freebsd-12.1/secure/lib/libcrypt/
H A Dcrypt-des.c592 crypt_des(const char *key, const char *setting, char *buffer) in crypt_des() argument
614 if (*setting == _PASSWORD_EFMT1) { in crypt_des()
621 count |= ascii_to_bin(setting[i]) << ((i - 1) * 6); in crypt_des()
624 salt |= ascii_to_bin(setting[i]) << ((i - 5) * 6); in crypt_des()
642 buffer = stpncpy(buffer, setting, 9); in crypt_des()
651 salt = (ascii_to_bin(setting[1]) << 6) in crypt_des()
652 | ascii_to_bin(setting[0]); in crypt_des()
654 *buffer++ = setting[0]; in crypt_des()
661 *buffer++ = setting[1] ? setting[1] : setting[0]; in crypt_des()
/freebsd-12.1/sys/contrib/octeon-sdk/
H A Dcvmx-asxx-defs.h407 uint64_t setting : 5;
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;
898 uint64_t setting : 5;
955 uint64_t setting : 5;
[all …]
H A Dcvmx-spx0-defs.h105 uint64_t setting : 17; /**< Core PLL setting */ member
107 uint64_t setting : 17;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DUserSettingsController.cpp107 bool Properties::IsSettingExperimental(llvm::StringRef setting) { in IsSettingExperimental() argument
108 if (setting.empty()) in IsSettingExperimental()
112 size_t dot_pos = setting.find_first_of('.'); in IsSettingExperimental()
113 return setting.take_front(dot_pos) == experimental; in IsSettingExperimental()
/freebsd-12.1/crypto/openssl/doc/man3/
H A DSSL_CTX_set_quiet_shutdown.pod23 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.
H A DSSL_CTX_set_info_callback.pod25 setup and use. The setting for B<ctx> is overridden from the setting for
31 When B<callback> is NULL, the callback setting currently valid for
42 When setting up a connection and during use, it is possible to obtain state
115 SSL_get_info_callback() returns the current setting.
H A DSSL_set_shutdown.pod29 No shutdown setting, yet.
57 for setting SSL_SENT_SHUTDOWN the application must however still call
64 SSL_get_shutdown() returns the current setting.
H A DSSL_CTX_set_cert_verify_callback.pod18 I<ctx>. SSL objects that are created from I<ctx> inherit the setting valid at
28 instead. By setting I<callback> to NULL, the default behaviour is restored.
32 argument I<arg> is specified by the application when setting I<callback>.
/freebsd-12.1/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_misc.c436 ahp->ah_antControl = setting; in ar5212SetAntennaSwitch()
942 if (setting) in ar5212SetCapability()
951 if (setting) in ar5212SetCapability()
966 if (setting) in ar5212SetCapability()
973 ahp->ah_diversity = (setting != 0); in ar5212SetCapability()
997 ahp->ah_tpcEnabled = (setting != 0); in ar5212SetCapability()
1000 if (setting) in ar5212SetCapability()
1008 if (setting > 63) in ar5212SetCapability()
1009 setting = 63; in ar5212SetCapability()
1037 if (setting) in ar5212SetCapability()
[all …]
/freebsd-12.1/crypto/openssl/doc/man1/
H A Dversion.pod35 All information, this is the same as setting all the other flags.
55 Platform setting.
59 OPENSSLDIR setting.
63 ENGINESDIR setting.
/freebsd-12.1/sys/gnu/dts/arm64/renesas/
H A Dr8a7795-salvator-xs.dts173 * (when SW31 is the default setting on Salvator-XS).
174 * - If SW31 is the default setting, you cannot use USB2.0 ch3 on
176 * Hence the SW31 setting must be changed like 2) below.
177 * 1) Default setting of SW31: ON-ON-OFF-OFF-OFF-OFF:
179 * 2) Changed setting of SW31: OFF-OFF-ON-ON-ON-ON:
/freebsd-12.1/sys/dev/ath/ath_hal/ar5416/
H A Dar5416_misc.c486 u_int32_t capability, u_int32_t setting, HAL_STATUS *status) in ar5416SetCapability() argument
492 setting &= ath_hal_eepromGet(ah, AR_EEP_RXMASK, NULL); in ar5416SetCapability()
493 pCap->halRxChainMask = setting; in ar5416SetCapability()
494 if (owl_get_ntxchains(setting) > 2) in ar5416SetCapability()
500 setting &= ath_hal_eepromGet(ah, AR_EEP_TXMASK, NULL); in ar5416SetCapability()
501 pCap->halTxChainMask = setting; in ar5416SetCapability()
502 if (owl_get_ntxchains(setting) > 2) in ar5416SetCapability()
510 if (setting) { in ar5416SetCapability()
525 return ar5212SetCapability(ah, type, capability, setting, status); in ar5416SetCapability()
/freebsd-12.1/usr.sbin/bsdconfig/networking/share/
H A Dmedia.subr118 local setting
119 f_sprintf setting "$msg_current_options" \
121 f_noyes "$msg_nfs_mounts_may_cause_hang" "$setting" ||
167 local setting
168 f_sprintf setting "$msg_current_options" \
170 f_noyes "$msg_nfs_mounts_may_cause_hang" "$setting" ||
H A Drouting.subr76 local setting
77 f_sprintf setting "$msg_current_default_router" \
79 f_noyes "$msg_nfs_mounts_may_cause_hang" "$setting" ||
111 # Only ask to apply setting if the current defaultrouter is different
H A Dnetmask.subr97 local setting
98 f_sprintf setting "$msg_current_subnet" \
100 f_noyes "$msg_nfs_mounts_may_cause_hang" "$setting" ||
/freebsd-12.1/contrib/netbsd-tests/lib/libcurses/tests/
H A Dcbreak2 # setting noecho stops getch setting cbreak itself so we should need
/freebsd-12.1/contrib/llvm/lib/Target/RISCV/
H A DRISCVInstrFormatsC.td50 // is responsible for setting the appropriate bits in the Inst field.
66 // is responsible for setting the appropriate bits in the Inst field.
92 // is responsible for setting the appropriate bits in the Inst field.
107 // is responsible for setting the appropriate bits in the Inst field.
/freebsd-12.1/tests/sys/cddl/zfs/tests/inheritance/
H A Dstate004.cfg34 # used to verify that setting a property on a middle level dataset does
35 # not prevent us from setting a property on the bottom level filesystem,

12345678910>>...25