/freebsd/contrib/openpam/lib/libpam/ |
H A D | openpam_debug.h | 69 int c_ = (c); \ 70 if (c_ >= 0 && c_ < PAM_NUM_ERRORS) \ 71 openpam_log(PAM_LOG_LIBDEBUG, "returning %s", pam_err_name[c_]); \ 73 openpam_log(PAM_LOG_LIBDEBUG, "returning %d!", c_); \ 74 return (c_); \
|
/freebsd/crypto/heimdal/lib/gssapi/mech/ |
H A D | mech.cat5 | 8 _/_e_t_c_/_g_s_s_/_m_e_c_h _/_e_t_c_/_g_s_s_/_q_o_p 11 The _/_e_t_c_/_g_s_s_/_m_e_c_h file contains a list of installed GSS-API security 32 … The _/_e_t_c_/_g_s_s_/_q_o_p file contains a list of Quality of Protection values for 47 This is a typical entry from _/_e_t_c_/_g_s_s_/_m_e_c_h: 51 This is a typical entry from _/_e_t_c_/_g_s_s_/_q_o_p:
|
/freebsd/crypto/openssl/crypto/chacha/asm/ |
H A D | chacha-x86.pl | 69 ($c,$c_)=("ecx","esi"); 104 &mov (&DWP(4*$cp,"esp"),$c_) if ($ai>0 && $ai<3); 108 &mov ($c_,&DWP(4*$cn,"esp")) if ($ai>0 && $ai<3); 127 ($c,$c_)=($c_,$c); 197 &mov ($c_,&DWP(64+4*11,"esp")); 203 &mov (&DWP(4*11,"esp"),$c_); 212 &mov ($c_,&DWP(64+4*9,"esp")); 241 &add ($c_,&DWP(64+4*9,"esp")); 255 &xor ($c_,&DWP(4*9,$b)); 260 &mov (&DWP(4*9,$a),$c_); [all …]
|
H A D | chacha-x86_64.pl | 2470 my ($a,$b,$c,$d, $a_,$b_,$c_,$d_,$fourz) = map("%zmm$_",(0..3,16..20)); 2540 vmovdqa32 $c,$c_ 2551 vmovdqa32 $c_,$c 2576 vpaddd $c_,$c,$c 2716 map(s/%z/%y/, $a,$b,$c,$d, $a_,$b_,$c_,$d_,$fourz); 2752 vmovdqa32 $c,$c_ 2761 vmovdqa32 $c_,$c 2786 vpaddd $c_,$c,$c
|
/freebsd/sys/crypto/openssl/ |
H A D | ossl_sha512.c | 30 ossl_sha384_init(void *c_) in ossl_sha384_init() argument 32 SHA512_CTX *c = c_; in ossl_sha384_init() 49 ossl_sha512_init(void *c_) in ossl_sha512_init() argument 51 SHA512_CTX *c = c_; in ossl_sha512_init() 68 ossl_sha512_final(uint8_t *md, void *c_) in ossl_sha512_final() argument 70 SHA512_CTX *c = c_; in ossl_sha512_final() 184 ossl_sha512_update(void *c_, const void *_data, unsigned int len) in ossl_sha512_update() argument 186 SHA512_CTX *c = c_; in ossl_sha512_update()
|
H A D | ossl_sha256.c | 26 ossl_sha224_init(void *c_) in ossl_sha224_init() argument 28 SHA256_CTX *c = c_; in ossl_sha224_init() 42 ossl_sha256_init(void *c_) in ossl_sha256_init() argument 44 SHA256_CTX *c = c_; in ossl_sha256_init()
|
H A D | ossl_hash.h | 48 HASH_UPDATE(void *c_, const void *data_, unsigned int len) in HASH_UPDATE() argument 50 HASH_CTX *c = c_; in HASH_UPDATE() 108 HASH_FINAL(uint8_t *md, void *c_) in HASH_FINAL() argument 110 HASH_CTX *c = c_; in HASH_FINAL()
|
H A D | ossl_sha1.c | 50 HASH_INIT(void *c_) in HASH_INIT() argument 52 SHA_CTX *c = c_; in HASH_INIT()
|
/freebsd/sys/contrib/libsodium/test/quirks/ |
H A D | quirks.h | 14 const unsigned char c_ = (unsigned char) c; in xmemset() local 18 dst_[i] = c_; in xmemset()
|
/freebsd/sbin/nvmecontrol/ |
H A D | comnd.h | 91 static void cmd_register_##c_##sc(void) __attribute__((constructor)); \ 92 static void cmd_register_##c_##sc(void) { cmd_register(&c, &sc); }
|
/freebsd/contrib/less/ |
H A D | less.hlp | 71 ESC-^F _<_c_1_> _<_c_2_> * Find close bracket _<_c_2_>. 72 ESC-^B _<_c_1_> _<_c_2_> * Find open bracket _<_c_1_>. 110 +_c_m_d Execute the less cmd each time a new file is examined. 112 !_c_o_m_m_a_n_d Execute the shell command with $SHELL. 113 #_c_o_m_m_a_n_d Execute the shell command, expanded like a prompt. 114 |XX_c_o [all...] |
/freebsd/crypto/libecc/src/examples/sig/rsa/ |
H A D | rsa.c | 1143 nn m_, c_; in rsaes_pkcs1_v1_5_encrypt() local 1144 m_.magic = c_.magic = WORD(0); in rsaes_pkcs1_v1_5_encrypt() 1183 ret = rsaep(pub, &m_, &c_); EG(ret, err); in rsaes_pkcs1_v1_5_encrypt() 1185 ret = rsa_i2osp(&c_, c, (u16)k); EG(ret, err); in rsaes_pkcs1_v1_5_encrypt() 1190 nn_uninit(&c_); in rsaes_pkcs1_v1_5_encrypt() 1210 nn m_, c_; in _rsaes_pkcs1_v1_5_decrypt() local 1211 m_.magic = c_.magic = WORD(0); in _rsaes_pkcs1_v1_5_decrypt() 1223 ret = rsa_os2ip(&c_, c, clen); EG(ret, err); in _rsaes_pkcs1_v1_5_decrypt() 1226 ret = rsadp_hardened(priv, pub, &c_, &m_); EG(ret, err); in _rsaes_pkcs1_v1_5_decrypt() 1229 ret = rsadp(priv, &c_, &m_); EG(ret, err); in _rsaes_pkcs1_v1_5_decrypt() [all …]
|
/freebsd/bin/sh/tests/parser/ |
H A D | dollar-quote5.0 | 11 [ $'\c_' = $'\037' ]
|
/freebsd/contrib/bmake/ |
H A D | bmake.cat1 | 7 bbmmaakkee [--BBeeiikkNNnnqqrrSSssttWWwwXX] [--CC _d_i_r_e_c_t_o_r_y] [--DD _v_a_r_i_a_b_l_e] [--dd _f_l_a_g_s] 8 [--ff _m_a_k_e_f_i_l_e] [--II _d_i_r_e_c_t_o_r_y] [--JJ _p_r_i_v_a_t_e] [--jj _m_a_x___j_o_b_s] 9 [--mm _d_i_r_e_c_t_o_r_y] [--TT _f_i_l_e] [--VV _v_a_r_i_a_b_l_e] [--vv _v_a_r_i_a_b_l_e] 33 --CC _d_i_r_e_c_t_o_r_y 34 Change to _d_i_r_e_c_t_o_r_y before reading the makefiles or doing 148 --II _d_i_r_e_c_t_o_r_y 187 --mm _d_i_r_e_c_t_o_r_y 227 --TT _t_r_a_c_e_f_i_l_e 228 When used with the --jj flag, append a trace record to _t_r_a_c_e_f_i_l_e 992 ::rraannggee[==_c_o [all...] |
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-matchers-comparisons_test.cc | 811 Unprintable() : c_('a') {} in Unprintable() 815 char dummy_c() { return c_; } in dummy_c() 818 char c_; member in testing::gmock_matchers_test::__anonbdf523750111::Unprintable
|
/freebsd/sys/kern/ |
H A D | tty_ttydisc.c | 63 #define CMP_FLAG(field,opt) (tp->t_termios.c_ ## field ## flag & (opt))
|