Searched defs:PUTU32 (Results 1 – 8 of 8) sorted by relevance
/dflybsd-src/crypto/libressl/crypto/aes/ |
H A D | aes_locl.h | 68 #define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st… macro
|
/dflybsd-src/crypto/libressl/crypto/camellia/ |
H A D | camellia.c | 99 # define PUTU32(p,v) ({u32 r=(v); asm("bswapl %0":"=r"(r):"0"(r)); *(u32 *)(p)=r; }) macro 115 # define PUTU32(p,v) ((p)[0] = (u8)((v) >> 24), (p)[1] = (u8)((v) >> 16), (p)[2] = (u8)((v) >> 8),… macro
|
/dflybsd-src/crypto/libressl/crypto/modes/ |
H A D | modes_lcl.h | 64 #define PUTU32(p,v) *(u32 *)(p) = BSWAP4(v) macro 67 #define PUTU32(p,v) ((p)[0]=(u8)((v)>>24),(p)[1]=(u8)((v)>>16),(p)[2]=(u8)((v)>>8),(p)[3]=(u8)(v)) macro
|
H A D | gcm128.c | 68 #define PUTU32(p,v) *(u32 *)(p) = BSWAP4(v) macro
|
/dflybsd-src/crypto/openssh/ |
H A D | rijndael.c | 622 #define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st… macro
|
/dflybsd-src/contrib/wpa_supplicant/src/crypto/ |
H A D | aes_i.h | 111 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); } macro 115 #define PUTU32(ct, st) { \ macro
|
/dflybsd-src/sys/crypto/rijndael/ |
H A D | rijndael-alg-fst.c | 727 #define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st… macro
|
/dflybsd-src/sys/crypto/camellia/ |
H A D | camellia.c | 72 #define PUTU32(ct, st) {(ct)[0] = (uint8_t)((st) >> 24); \ macro
|