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

/external/chromium_org/third_party/openssl/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
/external/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
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes_i.h111 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); } macro
115 #define PUTU32(ct, st) { \ macro
/external/wpa_supplicant_8/src/crypto/
H A Daes_i.h111 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); } macro
115 #define PUTU32(ct, st) { \ macro
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes_i.h111 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); } macro
115 #define PUTU32(ct, st) { \ macro
/external/chromium_org/third_party/openssl/openssl/crypto/modes/
H A Dmodes_lcl.h83 #define PUTU32(p,v) *(u32 *)(p) = BSWAP4(v) macro
86 #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
241 v = (u32)(Z.hi>>32); PUTU32(p,v);
242 v = (u32)(Z.hi); PUTU32(p+4,v);
243 v = (u32)(Z.lo>>32); PUTU32(p+8,v);
244 v = (u32)(Z.lo); PUTU32(p+12,v);
386 v = (u32)(Z.hi>>32); PUTU32(p,v);
387 v = (u32)(Z.hi); PUTU32(p+4,v);
388 v = (u32)(Z.lo>>32); PUTU32(p+8,v);
389 v = (u32)(Z.lo); PUTU32(
[all...]
/external/openssl/crypto/modes/
H A Dmodes_lcl.h80 #define PUTU32(p,v) *(u32 *)(p) = BSWAP4(v) macro
83 #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
241 v = (u32)(Z.hi>>32); PUTU32(p,v);
242 v = (u32)(Z.hi); PUTU32(p+4,v);
243 v = (u32)(Z.lo>>32); PUTU32(p+8,v);
244 v = (u32)(Z.lo); PUTU32(p+12,v);
386 v = (u32)(Z.hi>>32); PUTU32(p,v);
387 v = (u32)(Z.hi); PUTU32(p+4,v);
388 v = (u32)(Z.lo>>32); PUTU32(p+8,v);
389 v = (u32)(Z.lo); PUTU32(
[all...]
/external/qemu/util/
H A Daes.c39 # define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); } macro
1043 PUTU32(out , s0);
1050 PUTU32(out + 4, s1);
1057 PUTU32(out + 8, s2);
1064 PUTU32(out + 12, s3);
1234 PUTU32(out , s0);
1241 PUTU32(out + 4, s1);
1248 PUTU32(out + 8, s2);
1255 PUTU32(out + 12, s3);

Completed in 192 milliseconds