Searched defs:GETU32 (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/boringssl/src/crypto/aes/
H A Dinternal.h62 #define GETU32(p) SWAP(*((uint32_t *)(p))) macro
66 #define GETU32(pt) \ macro
/external/openssl/crypto/aes/
H A Daes_locl.h67 # define GETU32(p) SWAP(*((u32 *)(p))) macro
70 # define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3])) macro
H A Daes_x86core.c77 #undef GETU32 macro
78 #define GETU32(p) (*((u32*)(p))) macro
491 rk[0] = GETU32(userKey );
492 rk[1] = GETU32(userKey + 4);
493 rk[2] = GETU32(userKey + 8);
494 rk[3] = GETU32(userKey + 12);
513 rk[4] = GETU32(userKey + 16);
514 rk[5] = GETU32(userKey + 20);
535 rk[6] = GETU32(userKey + 24);
536 rk[7] = GETU32(userKe
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/modes/
H A Dinternal.h138 #define GETU32(p) BSWAP4(*(const uint32_t *)(p)) macro
141 #define GETU32(p) \ macro
H A Dgcm.c67 #undef GETU32 macro
68 #define GETU32(p) BSWAP4(*(const uint32_t *)(p)) macro
402 hi = (uint64_t)GETU32(p) << 32 | GETU32(p + 4);
403 lo = (uint64_t)GETU32(p + 8) << 32 | GETU32(p + 12);
514 ctr = GETU32(ctx->Yi.c + 12);
625 ctr = GETU32(ctx->Yi.c + 12);
785 ctr = GETU32(ctx->Yi.c + 12);
951 ctr = GETU32(ct
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes_i.h110 #define GETU32(p) SWAP(*((u32 *)(p))) macro
113 #define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ \ macro
/external/wpa_supplicant_8/src/crypto/
H A Daes_i.h110 #define GETU32(p) SWAP(*((u32 *)(p))) macro
113 #define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ \ macro
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes_i.h110 #define GETU32(p) SWAP(*((u32 *)(p))) macro
113 #define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ \ macro
/external/openssl/crypto/modes/
H A Dmodes_lcl.h79 #define GETU32(p) BSWAP4(*(const u32 *)(p)) macro
82 #define GETU32(p) ((u32)(p)[0]<<24|(u32)(p)[1]<<16|(u32)(p)[2]<<8|(u32)(p)[3]) macro
H A Dgcm128.c65 #undef GETU32 macro
66 #define GETU32(p) BSWAP4(*(const u32 *)(p)) macro
603 X = (long)((u64)GETU32(p)<<32|GETU32(p+4));
608 X = (long)GETU32(p);
712 hi = (u64)GETU32(p) <<32|GETU32(p+4);
713 lo = (u64)GETU32(p+8)<<32|GETU32(p+12);
835 ctr = GETU32(ct
[all...]
/external/qemu/util/
H A Daes.c38 # define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3])) macro
747 rk[0] = GETU32(userKey );
748 rk[1] = GETU32(userKey + 4);
749 rk[2] = GETU32(userKey + 8);
750 rk[3] = GETU32(userKey + 12);
769 rk[4] = GETU32(userKey + 16);
770 rk[5] = GETU32(userKey + 20);
791 rk[6] = GETU32(userKey + 24);
792 rk[7] = GETU32(userKey + 28);
896 s0 = GETU32(i
[all...]

Completed in 324 milliseconds