Searched defs:PUTU32 (Results 1 – 5 of 5) sorted by relevance
/openbsd-src/lib/libcrypto/modes/ |
H A D | modes_local.h | 62 #define PUTU32(p,v) *(u32 *)(p) = BSWAP4(v) macro 65 #define PUTU32(p,v) ((p)[0]=(u8)((v)>>24),(p)[1]=(u8)((v)>>16),(p)[2]=(u8)((v)>>8),(p)[3]=(u8)(v)) macro
|
/openbsd-src/usr.bin/ssh/ |
H A D | rijndael.c | 619 #define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st… macro
|
/openbsd-src/lib/libcrypto/camellia/ |
H A D | camellia.c | 114 # define PUTU32(p,v) ({u32 r=(v); asm("bswapl %0":"=r"(r):"0"(r)); *(u32 *)(p)=r; }) macro 130 # define PUTU32(p,v) ((p)[0] = (u8)((v) >> 24), (p)[1] = (u8)((v) >> 16), (p)[2] = (u8)((v) >> 8),… macro
|
/openbsd-src/sys/crypto/ |
H A D | rijndael.c | 618 #define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st… macro
|
/openbsd-src/sys/lib/libsa/ |
H A D | rijndael.c | 716 #define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st… macro
|