/external/chromium_org/third_party/openssl/openssl/crypto/aes/ |
aes_locl.h | 68 # define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); } 71 # define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); }
|
aes_core.c | [all...] |
/external/openssl/crypto/aes/ |
aes_locl.h | 68 # define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); } 71 # define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); }
|
aes_core.c | [all...] |
/external/wpa_supplicant_8/src/crypto/ |
aes-internal-enc.c | 88 PUTU32(ct , s0); 90 PUTU32(ct + 4, s1); 92 PUTU32(ct + 8, s2); 94 PUTU32(ct + 12, s3);
|
aes-internal-dec.c | 141 PUTU32(pt , s0); 143 PUTU32(pt + 4, s1); 145 PUTU32(pt + 8, s2); 147 PUTU32(pt + 12, s3);
|
aes_i.h | 111 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); } 115 #define PUTU32(ct, st) { \
|
/external/chromium_org/third_party/openssl/openssl/crypto/modes/ |
ctr128.c | 231 PUTU32(ivec+12,ctr32); 243 PUTU32(ivec+12,ctr32);
|
modes_lcl.h | 83 #define PUTU32(p,v) *(u32 *)(p) = BSWAP4(v) 86 #define PUTU32(p,v) ((p)[0]=(u8)((v)>>24),(p)[1]=(u8)((v)>>16),(p)[2]=(u8)((v)>>8),(p)[3]=(u8)(v))
|
gcm128.c | 67 #undef PUTU32 68 #define PUTU32(p,v) *(u32 *)(p) = BSWAP4(v) 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(p+12,v) [all...] |
/external/openssl/crypto/modes/ |
ctr128.c | 231 PUTU32(ivec+12,ctr32); 243 PUTU32(ivec+12,ctr32);
|
modes_lcl.h | 83 #define PUTU32(p,v) *(u32 *)(p) = BSWAP4(v) 86 #define PUTU32(p,v) ((p)[0]=(u8)((v)>>24),(p)[1]=(u8)((v)>>16),(p)[2]=(u8)((v)>>8),(p)[3]=(u8)(v))
|
gcm128.c | 67 #undef PUTU32 68 #define PUTU32(p,v) *(u32 *)(p) = BSWAP4(v) 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(p+12,v) [all...] |
/external/openssh/ |
rijndael.c | [all...] |
/external/qemu/ |
aes.c | 44 # define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); } [all...] |