Searched defs:PUTU32 (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/crypto/openssl/crypto/aes/
H A Daes_locl.h68 # define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); } macro
71 # define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); } macro
/freebsd-11-stable/crypto/openssh/
H A Drijndael.c622 #define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); } macro
/freebsd-11-stable/sys/crypto/rijndael/
H A Drijndael-alg-fst.c728 #define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); } macro
/freebsd-11-stable/crypto/openssl/crypto/camellia/
H A Dcamellia.c101 # define PUTU32(p,v) (*((u32 *)(p)) = SWAP((v))) macro
108 # define PUTU32(p,v) (*(u32 *)(p)=(v)) macro
111 # define PUTU32(p,v) ({u32 r=(v); asm("bswapl %0":"=r"(r):"0"(r)); *(u32 *)(p)=r; }) macro
121 # define PUTU32(p,v) (*(u32 *)(p)=(v)) macro
133 # define PUTU32(p,v) ((p)[0] = (u8)((v) >> 24), (p)[1] = (u8)((v) >> 16), (p)[2] = (u8)((v) >> 8), (p)[3] = (u8)(v)) macro
[all...]
/freebsd-11-stable/crypto/openssl/crypto/modes/
H A Dmodes_lcl.h87 # define PUTU32(p,v) *(u32 *)(p) = BSWAP4(v) macro
90 # 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 Dgcm128.c67 # undef PUTU32 macro
68 # define PUTU32(p,v) *(u32 *)(p) = BSWAP4(v) macro
[all...]
/freebsd-11-stable/contrib/wpa/src/crypto/
H A Daes_i.h111 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); } macro
115 #define PUTU32(ct, st) { \ macro
/freebsd-11-stable/sys/crypto/camellia/
H A Dcamellia.c72 #define PUTU32(ct, st) {(ct)[0] = (uint8_t)((st) >> 24); \ macro

Completed in 193 milliseconds