Home
last modified time | relevance | path

Searched +defs:S +defs:a +defs:a (Results 1 – 25 of 72) sorted by relevance

123

/freebsd/contrib/tcsh/
H A Dtc.decls.h165 # define tcgetpgrp(a) xtcgetpgrp(a) argument
167 # define tcsetpgrp(a, b) xtcsetpgrp((a), (b)) argument
181 # define memmove(a, b, c) xmemmove(a, b, c) argument
186 # define memset(a, b, c) xmemset(a, b, c) argument
193 # define getcwd(a, b) xgetcwd(a, b) argument
199 # define gethostname(a, b) xgethostname(a, b) argument
205 # define nice(a) xnice(a) argument
211 # define strerror(a) xstrerror(a) argument
226 #define __attribute__(a) argument
265 #define one_mbtowc(PWC, S, N) \ argument
[all …]
H A Dsh.h105 #define normal_mbtowc(PWC, S, N) rt_mbtowc(PWC, S, N) argument
112 #define normal_mbtowc(PWC, S, N) ((void)(N), *(PWC) = (unsigned char)*(S), 1) argument
115 # define SAVE(a) (Strsave(str2short(a))) argument
121 #define normal_mbtowc(PWC, S, N) ((void)(N), *(PWC) = (unsigned char)*(S), 1) argument
123 # define SAVE(a) (strsave(a)) argument
135 #define USE(a) (void) (a) argument
136 #define TCSH_IGNORE(a) tcsh_ignore((intptr_t)a) argument
137 static __inline void tcsh_ignore(intptr_t a) in tcsh_ignore()
415 # define strchr(a, b) index(a, b) argument
416 # define strrchr(a, b) rindex(a, b) argument
[all …]
/freebsd/sys/dev/ixl/
H A Di40e_osdep.h60 #define MSGOUT(S, A, B) printf(S "\n", A, B) argument
63 #define DEBUGOUT(S) printf(S "\n") argument
64 #define DEBUGOUT1(S,A) printf(S "\n",A) argument
65 #define DEBUGOUT2(S,A,B) printf(S "\n",A,B) argument
66 #define DEBUGOUT3(S,A,B,C) printf(S "\n",A,B,C) argument
67 #define DEBUGOUT7(S,A,B,C,D,E,F,G) printf(S "\n",A,B,C,D,E,F,G) argument
69 #define DEBUGOUT(S) argument
70 #define DEBUGOUT1(S,A) argument
71 #define DEBUGOUT2(S,A,B) argument
72 #define DEBUGOUT3(S,A,B,C) argument
[all …]
/freebsd/crypto/openssl/crypto/des/
H A Ddes_local.h100 # define ROTATE(a,n) (_lrotr(a,n)) argument
102 # define ROTATE(a,n) (_rotr(a,n)) argument
105 # define ROTATE(a,n) ({ register unsigned int ret; \ argument
115 # define ROTATE(a,n) (((a)>>(n))+((a)<<(32-(n)))) argument
125 # define LOAD_DATA_tmp(R,S,u,t,E0,E1) \ argument
128 # define LOAD_DATA(R,S,u,t,E0,E1,tmp) \ argument
134 # define LOAD_DATA_tmp(a,b,c,d,e,f) LOAD_DATA(a,b,c,d,e,f,g) argument
135 # define LOAD_DATA(R,S,u,t,E0,E1,tmp) \ argument
146 # define D_ENCRYPT(LL,R,S) { \ argument
197 # define PERM_OP(a,b,t,n,m) ((t)=((((a)>>(n))^(b))&(m)),\ argument
/freebsd/sys/crypto/des/
H A Ddes_locl.h123 #define ROTATE(a,n) (((a)>>(n))+((a)<<(32-(n)))) argument
125 #define LOAD_DATA_tmp(a,b,c,d,e,f) LOAD_DATA(a,b,c,d,e,f,g) argument
126 #define LOAD_DATA(R,S,u,t,E0,E1,tmp) \ argument
144 #define D_ENCRYPT(LL,R,S) { \ argument
172 #define D_ENCRYPT(LL,R,S) { \ argument
211 #define D_ENCRYPT(LL,R,S) { \ argument
228 #define D_ENCRYPT(LL,R,S) {\ argument
257 #define D_ENCRYPT(LL,R,S) {\ argument
288 #define D_ENCRYPT(LL,R,S) {\ argument
340 #define PERM_OP(a,b,t,n,m) ((t)=((((a)>>(n))^(b))&(m)),\ argument
/freebsd/sys/dev/ixgbe/
H A Dixgbe_osdep.h74 #define MSGOUT(S, A, B) printf(S "\n", A, B) argument
77 #define DEBUGOUT(S) printf(S "\n") argument
78 #define DEBUGOUT1(S,A) printf(S "\n",A) argument
79 #define DEBUGOUT2(S,A,B) printf(S "\n",A,B) argument
80 #define DEBUGOUT3(S,A,B,C) printf(S "\n",A,B,C) argument
81 #define DEBUGOUT4(S,A,B,C,D) printf(S "\n",A,B,C,D) argument
82 #define DEBUGOUT5(S,A,B,C,D,E) printf(S "\n",A,B,C,D,E) argument
83 #define DEBUGOUT6(S,A,B,C,D,E,F) printf(S "\n",A,B,C,D,E,F) argument
84 #define DEBUGOUT7(S,A,B,C,D,E,F,G) printf(S "\n",A,B,C,D,E,F,G) argument
103 #define DEBUGOUT(S) argument
[all …]
/freebsd/sys/net80211/
H A Dieee80211_crypto_gcm.c46 xor_block(uint8_t *b, const uint8_t *a, size_t len) in xor_block()
54 void WPA_PUT_BE64(uint8_t *a, uint64_t val) in WPA_PUT_BE64()
67 WPA_PUT_BE32(uint8_t *a, uint32_t val) in WPA_PUT_BE32()
76 WPA_GET_BE32(const uint8_t *a) in WPA_GET_BE32()
287 const uint8_t *crypt, size_t crypt_len, uint8_t *S) in aes_gcm_ghash()
315 uint8_t S[GCMP_MIC_LEN]; in ieee80211_crypto_aes_gcm_ae() local
344 uint8_t S[16], T[GCMP_MIC_LEN]; in ieee80211_crypto_aes_gcm_ad() local
H A Dieee80211_crypto_wep.c347 #define S_SWAP(a,b) do { uint8_t t = S[a]; S[a] = S[b]; S[b] = t; } while(0) in wep_encrypt() argument
355 uint8_t S[256]; in wep_encrypt() local
430 #define S_SWAP(a,b) do { uint8_t t = S[a]; S[a] = S[b]; S[b] = t; } while(0) in wep_decrypt() argument
438 uint8_t S[256]; in wep_decrypt() local
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_generichash/blake2b/ref/
H A Dblake2b-compress-avx2.c38 blake2b_compress_avx2(blake2b_state *S, const uint8_t block[BLAKE2B_BLOCKBYTES]) in blake2b_compress_avx2()
40 __m256i a = LOADU(&S->h[0]); in blake2b_compress_avx2() local
H A Dblake2b-compress-ref.c31 blake2b_compress_ref(blake2b_state *S, const uint8_t block[BLAKE2B_BLOCKBYTES]) in blake2b_compress_ref()
51 #define G(r, i, a, b, c, d) \ in blake2b_compress_ref() argument
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_internal_defs.h27 #define SANITIZER_STRINGIFY_(S) #S argument
28 #define SANITIZER_STRINGIFY(S) SANITIZER_STRINGIFY_(S) argument
227 # define FORMAT(f, a) argument
241 # define FORMAT(f, a) __attribute__((format(printf, f, a))) argument
333 #define CHECK(a) CHECK_IMPL((a), !=, 0) argument
334 #define CHECK_EQ(a, b) CHECK_IMPL((a), ==, (b)) argument
335 #define CHECK_NE(a, b) CHECK_IMPL((a), !=, (b)) argument
336 #define CHECK_LT(a, b) CHECK_IMPL((a), <, (b)) argument
337 #define CHECK_LE(a, b) CHECK_IMPL((a), <=, (b)) argument
338 #define CHECK_GT(a, b) CHECK_IMPL((a), >, (b)) argument
[all …]
/freebsd/sys/dev/iavf/
H A Diavf_osdep.h70 #define DEBUGOUT(S) printf(S "\n") argument
71 #define DEBUGOUT1(S,A) printf(S "\n",A) argument
72 #define DEBUGOUT2(S,A,B) printf(S "\n",A,B) argument
73 #define DEBUGOUT3(S,A,B,C) printf(S "\n",A,B,C) argument
74 #define DEBUGOUT7(S,A,B,C,D,E,F,G) printf(S "\n",A,B,C,D,E,F,G) argument
76 #define DEBUGOUT(S) argument
77 #define DEBUGOUT1(S,A) argument
78 #define DEBUGOUT2(S,A,B) argument
79 #define DEBUGOUT3(S,A,B,C) argument
80 #define DEBUGOUT6(S,A,B,C,D,E,F) argument
[all …]
/freebsd/contrib/wpa/src/crypto/
H A Drc4.c14 #define S_SWAP(a,b) do { u8 t = S[a]; S[a] = S[b]; S[b] = t; } while(0) argument
20 u8 S[256], *pos; in rc4_skip() local
H A Dsha256-internal.c73 #define S(x, n) RORc((x), (n)) macro
83 u32 S[8], W[64], t0, t1; in sha256_compress() local
103 #define RND(a,b,c,d,e,f,g,h,i) \ in sha256_compress() argument
/freebsd/contrib/libarchive/libarchive/
H A Darchive_blake2s_ref.c45 static void blake2s_set_lastnode( blake2s_state *S ) in blake2s_set_lastnode()
51 static int blake2s_is_lastblock( const blake2s_state *S ) in blake2s_is_lastblock()
56 static void blake2s_set_lastblock( blake2s_state *S ) in blake2s_set_lastblock()
63 static void blake2s_increment_counter( blake2s_state *S, const uint32_t inc ) in blake2s_increment_counter()
69 static void blake2s_init0( blake2s_state *S ) in blake2s_init0()
78 int blake2s_init_param( blake2s_state *S, const blake2s_param *P ) in blake2s_init_param()
95 int blake2s_init( blake2s_state *S, size_t outlen ) in blake2s_init()
117 int blake2s_init_key( blake2s_state *S, size_t outlen, const void *key, size_t keylen ) in blake2s_init_key()
150 #define G(r,i,a,b,c,d) \ argument
174 static void blake2s_compress( blake2s_state *S, const uint8_t in[BLAKE2S_BLOCKBYTES] ) in blake2s_compress()
[all …]
/freebsd/sys/contrib/ck/include/gcc/ppc/
H A Dck_pr.h96 #define CK_PR_LOAD(S, M, T, C, I) \ in CK_PR_FENCE() argument
110 #define CK_PR_LOAD_S(S, T, I) CK_PR_LOAD(S, T, T, T, I) argument
123 #define CK_PR_STORE(S, M, T, C, I) \ argument
136 #define CK_PR_STORE_S(S, T, I) CK_PR_STORE(S, T, T, T, I) argument
189 #define CK_PR_CAS_S(a, b) CK_PR_CAS(a, b, b) argument
241 #define CK_PR_UNARY_S(S, T, W) \ argument
277 #define CK_PR_BINARY_S(S, T, W) \ argument
310 #define CK_PR_FAA(S, T, W) \ argument
/freebsd/crypto/openssl/providers/implementations/digests/
H A Dblake2s_prov.c44 static ossl_inline void blake2s_set_lastblock(BLAKE2S_CTX *S) in blake2s_set_lastblock()
50 static ossl_inline void blake2s_init0(BLAKE2S_CTX *S) in blake2s_init0()
61 static void blake2s_init_param(BLAKE2S_CTX *S, const BLAKE2S_PARAM *P) in blake2s_init_param()
147 static void blake2s_compress(BLAKE2S_CTX *S, in blake2s_compress()
198 #define G(r,i,a,b,c,d) \ in blake2s_compress() argument
H A Dblake2b_prov.c48 static ossl_inline void blake2b_set_lastblock(BLAKE2B_CTX *S) in blake2b_set_lastblock()
54 static ossl_inline void blake2b_init0(BLAKE2B_CTX *S) in blake2b_init0()
65 static void blake2b_init_param(BLAKE2B_CTX *S, const BLAKE2B_PARAM *P) in blake2b_init_param()
154 static void blake2b_compress(BLAKE2B_CTX *S, in blake2b_compress()
205 #define G(r,i,a,b,c,d) \ in blake2b_compress() argument
/freebsd/crypto/libecc/src/hash/
H A Dbelt-hash.c37 static u8 S[256] = variable
58 #define GET_BYTE(x, a) ( ((x) >> (a)) & 0xff ) argument
59 #define PUT_BYTE(x, a) ( (u32)(x) << (a) ) argument
60 #define SB(x, a) PUT_BYTE( S[GET_BYTE((x), (a))], (a) ) argument
119 u32 a, b, c, d, e; in belt_encrypt() local
160 u32 a, b, c, d, e; in belt_decrypt() local
/freebsd/sys/contrib/libb2/
H A Dblake2b-ref.c46 static inline int blake2b_set_lastnode( blake2b_state *S ) in blake2b_set_lastnode()
52 static inline int blake2b_clear_lastnode( blake2b_state *S ) in blake2b_clear_lastnode()
59 static inline int blake2b_set_lastblock( blake2b_state *S ) in blake2b_set_lastblock()
67 static inline int blake2b_clear_lastblock( blake2b_state *S ) in blake2b_clear_lastblock()
75 static inline int blake2b_increment_counter( blake2b_state *S, const uint64_t inc ) in blake2b_increment_counter()
139 static inline int blake2b_init0( blake2b_state *S ) in blake2b_init0()
169 int blake2b_init_param( blake2b_state *S, const blake2b_param *P ) in blake2b_init_param()
184 int blake2b_init( blake2b_state *S, size_t outlen ) in blake2b_init()
205 int blake2b_init_key( blake2b_state *S, size_t outlen, const void *key, size_t keylen ) in blake2b_init_key()
237 static int blake2b_compress( blake2b_state *S, const uint8_t block[BLAKE2B_BLOCKBYTES] ) in blake2b_compress()
[all …]
H A Dblake2s-ref.c41 static inline int blake2s_set_lastnode( blake2s_state *S ) in blake2s_set_lastnode()
47 static inline int blake2s_clear_lastnode( blake2s_state *S ) in blake2s_clear_lastnode()
54 static inline int blake2s_set_lastblock( blake2s_state *S ) in blake2s_set_lastblock()
62 static inline int blake2s_clear_lastblock( blake2s_state *S ) in blake2s_clear_lastblock()
70 static inline int blake2s_increment_counter( blake2s_state *S, const uint32_t inc ) in blake2s_increment_counter()
132 static inline int blake2s_init0( blake2s_state *S ) in blake2s_init0()
162 int blake2s_init_param( blake2s_state *S, const blake2s_param *P ) in blake2s_init_param()
177 int blake2s_init( blake2s_state *S, size_t outlen ) in blake2s_init()
198 int blake2s_init_key( blake2s_state *S, size_t outlen, const void *key, size_t keylen ) in blake2s_init_key()
230 static int blake2s_compress( blake2s_state *S, const uint8_t block[BLAKE2S_BLOCKBYTES] ) in blake2s_compress()
[all …]
/freebsd/contrib/ofed/libirdma/
H A Dosdep.h49 #define IRDMA_NTOHL(a) ntohl(a) argument
50 #define IRDMA_NTOHS(a) ntohs(a) argument
80 #define BIT_ULL(a) (1ULL << (a)) argument
81 #define min(a, b) ((a) > (b) ? (b) : (a)) argument
96 #define irdma_print(S, ...) printf("%s:%d "S, __FUNCTION__, __LINE__, ##__VA_ARGS__) argument
128 #define irdma_dev_info(a, b, ...) printf(b, ##__VA_ARGS__) argument
147 #define irdma_memcpy(a, b, c) memcpy((a), (b), (c)) argument
148 #define irdma_memset(a, b, c) memset((a), (b), (c)) argument
157 #define between(a, b, c) (bool)(c-a >= b-a) argument
/freebsd/sys/dev/irdma/
H A Dosdep.h59 #define IRDMA_NTOHS(a) ntohs(a) argument
107 #define irdma_print(S, ...) printf("%s:%d "S, __FUNCTION__, __LINE__, ##__VA_ARGS__) argument
133 #define irdma_dev_info(a, b, ...) printf(b, ##__VA_ARGS__) argument
171 #define irdma_memcpy(a, b, c) memcpy((a), (b), (c)) argument
172 #define irdma_memset(a, b, c) memset((a), (b), (c)) argument
181 #define between(a, b, c) (bool)(c-a >= b-a) argument
183 #define rd32(a, reg) irdma_rd32((a)->dev_context, (reg)) argument
184 #define wr32(a, reg, value) irdma_wr32((a)->dev_context, (reg), (value)) argument
186 #define rd64(a, reg) irdma_rd64((a)->dev_context, (reg)) argument
187 #define wr64(a, reg, value) irdma_wr64((a)->dev_context, (reg), (value)) argument
[all …]
/freebsd/sys/contrib/ck/include/gcc/x86/
H A Dck_pr.h111 #define CK_PR_FAS(S, M, T, C, I) \ argument
125 #define CK_PR_FAS_S(S, T, I) CK_PR_FAS(S, T, T, T, I) argument
137 #define CK_PR_LOAD(S, M, T, C, I) \ argument
151 #define CK_PR_LOAD_S(S, T, I) CK_PR_LOAD(S, T, T, T, I) argument
163 #define CK_PR_STORE(S, M, T, C, I) \ argument
176 #define CK_PR_STORE_S(S, T, I) CK_PR_STORE(S, T, T, T, I) argument
191 #define CK_PR_FAA(S, M, T, C, I) \ argument
205 #define CK_PR_FAA_S(S, T, I) CK_PR_FAA(S, T, T, T, I) argument
220 #define CK_PR_UNARY(K, S, T, C, I) \ argument
224 #define CK_PR_UNARY_R(K, S, T, C, I) \ argument
[all …]
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/
H A Daead_aes256gcm_aesni.c39 # define _bswap64(a) _byteswap_uint64(a) argument
41 # define _bswap64(a) __builtin_bswap64(a) argument
71 #define EXPAND_KEY_1(S) do { \ in aesni_key256_expand() argument
80 #define EXPAND_KEY_2(S) do { \ in aesni_key256_expand() argument
130 #define NVDECLx(a) \ argument
133 #define NVx(a) \ argument
138 #define TEMPDECLx(a) \ argument
141 #define TEMPx(a) \ argument
145 #define AESENCx(a) \ argument
149 #define AESENCLASTx(a) \ argument
[all …]

123