Searched defs:PUTU32 (Results 1 – 7 of 7) sorted by relevance
/third_party/openssl/crypto/aes/ |
D | aes_local.h | 21 # define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); } macro 24 # define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((… macro
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
D | aes_i.h | 111 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); } macro 115 #define PUTU32(ct, st) { \ macro
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
D | aes_i.h | 111 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); } macro 115 #define PUTU32(ct, st) { \ macro
|
/third_party/FreeBSD/sys/crypto/rijndael/ |
D | rijndael-alg-fst.c | 728 #define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st… macro
|
/third_party/openssl/crypto/camellia/ |
D | camellia.c | 57 #define PUTU32(p,v) ((p)[0] = (u8)((v) >> 24), (p)[1] = (u8)((v) >> 16), (p)[2] = (u8)((v) >> 8), … macro
|
/third_party/openssl/include/crypto/ |
D | modes.h | 94 # define PUTU32(p,v) *(u32 *)(p) = BSWAP4(v) macro 97 # define PUTU32(p,v) ((p)[0]=(u8)((v)>>24),(p)[1]=(u8)((v)>>16),(p)[2]=(u8)((v)>>8),(p)[3]=(u8)… macro
|
/third_party/openssl/crypto/modes/ |
D | gcm128.c | 27 # define PUTU32(p,v) *(u32 *)(p) = BSWAP4(v) macro
|