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

  /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...]
  /external/openssh/
rijndael.c     [all...]
  /external/qemu/
aes.c 43 # define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3]))
    [all...]
  /external/wpa_supplicant_8/src/crypto/
aes_i.h 110 #define GETU32(p) SWAP(*((u32 *)(p)))
113 #define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ \
  /external/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])
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/wpa_supplicant_6/wpa_supplicant/src/crypto/
aes.c     [all...]

Completed in 537 milliseconds