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

/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.h103 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); } macro
107 #define PUTU32(ct, st) { \ macro
/external/wpa_supplicant_8/src/crypto/
H A Daes_i.h103 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); } macro
107 #define PUTU32(ct, st) { \ macro
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes_i.h103 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); } macro
107 #define PUTU32(ct, st) { \ macro
/external/openssh/
H A Drijndael.c720 #define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); } macro
1015 PUTU32(ct , s0);
1022 PUTU32(ct + 4, s1);
1029 PUTU32(ct + 8, s2);
1036 PUTU32(ct + 12, s3);
1196 PUTU32(pt , s0);
1203 PUTU32(pt + 4, s1);
1210 PUTU32(pt + 8, s2);
1217 PUTU32(pt + 12, s3);
/external/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/qemu/
H A Daes.c44 # define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); } macro
1048 PUTU32(out , s0);
1055 PUTU32(out + 4, s1);
1062 PUTU32(out + 8, s2);
1069 PUTU32(out + 12, s3);
1239 PUTU32(out , s0);
1246 PUTU32(out + 4, s1);
1253 PUTU32(out + 8, s2);
1260 PUTU32(out + 12, s3);
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Daes.c861 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); } macro
865 #define PUTU32(ct, st) { \ macro
989 PUTU32(ct , s0);
991 PUTU32(ct + 4, s1);
993 PUTU32(ct + 8, s2);
995 PUTU32(ct + 12, s3);
1057 PUTU32(pt , s0);
1059 PUTU32(pt + 4, s1);
1061 PUTU32(pt + 8, s2);
1063 PUTU32(p
[all...]

Completed in 198 milliseconds