HomeSort by relevance Sort by last modified time
    Searched refs:GETU32 (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/openssl/openssl/crypto/aes/
aes_locl.h 67 # define GETU32(p) SWAP(*((u32 *)(p)))
70 # define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3]))
aes_x86core.c 77 #undef GETU32
78 #define GETU32(p) (*((u32*)(p)))
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(userKey + 28)
    [all...]
aes_core.c     [all...]
  /external/openssl/crypto/aes/
aes_locl.h 67 # define GETU32(p) SWAP(*((u32 *)(p)))
70 # define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3]))
aes_x86core.c 77 #undef GETU32
78 #define GETU32(p) (*((u32*)(p)))
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(userKey + 28)
    [all...]
aes_core.c     [all...]
  /external/wpa_supplicant_8/src/crypto/
aes-internal-enc.c 34 s0 = GETU32(pt ) ^ rk[0];
35 s1 = GETU32(pt + 4) ^ rk[1];
36 s2 = GETU32(pt + 8) ^ rk[2];
37 s3 = GETU32(pt + 12) ^ rk[3];
aes-internal-dec.c 87 s0 = GETU32(ct ) ^ rk[0];
88 s1 = GETU32(ct + 4) ^ rk[1];
89 s2 = GETU32(ct + 8) ^ rk[2];
90 s3 = GETU32(ct + 12) ^ rk[3];
aes_i.h 110 #define GETU32(p) SWAP(*((u32 *)(p)))
113 #define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ \
aes-internal.c     [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/modes/
modes_lcl.h 82 #define GETU32(p) BSWAP4(*(const u32 *)(p))
85 #define GETU32(p) ((u32)(p)[0]<<24|(u32)(p)[1]<<16|(u32)(p)[2]<<8|(u32)(p)[3])
ctr128.c 208 ctr32 = GETU32(ivec+12);
gcm128.c 65 #undef GETU32
66 #define GETU32(p) BSWAP4(*(const u32 *)(p))
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(ctx->Yi.c+12)
    [all...]
  /external/openssl/crypto/modes/
modes_lcl.h 79 #define GETU32(p) BSWAP4(*(const u32 *)(p))
82 #define GETU32(p) ((u32)(p)[0]<<24|(u32)(p)[1]<<16|(u32)(p)[2]<<8|(u32)(p)[3])
ctr128.c 208 ctr32 = GETU32(ivec+12);
gcm128.c 65 #undef GETU32
66 #define GETU32(p) BSWAP4(*(const u32 *)(p))
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(ctx->Yi.c+12)
    [all...]
  /external/qemu/util/
aes.c 38 # define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3]))
    [all...]

Completed in 191 milliseconds