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

/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/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/openssh/
H A Drijndael.c719 #define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3])) macro
731 rk[0] = GETU32(cipherKey );
732 rk[1] = GETU32(cipherKey + 4);
733 rk[2] = GETU32(cipherKey + 8);
734 rk[3] = GETU32(cipherKey + 12);
753 rk[4] = GETU32(cipherKey + 16);
754 rk[5] = GETU32(cipherKey + 20);
775 rk[6] = GETU32(cipherKey + 24);
776 rk[7] = GETU32(cipherKey + 28);
868 s0 = GETU32(p
[all...]
/external/openssl/crypto/modes/
H A Dmodes_lcl.h82 #define GETU32(p) BSWAP4(*(const u32 *)(p)) macro
85 #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);
704 hi = (u64)GETU32(p) <<32|GETU32(p+4);
705 lo = (u64)GETU32(p+8)<<32|GETU32(p+12);
813 ctr = GETU32(ct
[all...]
/external/qemu/
H A Daes.c43 # define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3])) macro
752 rk[0] = GETU32(userKey );
753 rk[1] = GETU32(userKey + 4);
754 rk[2] = GETU32(userKey + 8);
755 rk[3] = GETU32(userKey + 12);
774 rk[4] = GETU32(userKey + 16);
775 rk[5] = GETU32(userKey + 20);
796 rk[6] = GETU32(userKey + 24);
797 rk[7] = GETU32(userKey + 28);
901 s0 = GETU32(i
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Daes.c860 #define GETU32(p) SWAP(*((u32 *)(p))) macro
863 #define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ \ macro
880 rk[0] = GETU32(cipherKey );
881 rk[1] = GETU32(cipherKey + 4);
882 rk[2] = GETU32(cipherKey + 8);
883 rk[3] = GETU32(cipherKey + 12);
943 s0 = GETU32(pt ) ^ rk[0];
944 s1 = GETU32(pt + 4) ^ rk[1];
945 s2 = GETU32(pt + 8) ^ rk[2];
946 s3 = GETU32(p
[all...]

Completed in 378 milliseconds