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

  /external/chromium_org/third_party/boringssl/src/crypto/aes/
internal.h 62 #define GETU32(p) SWAP(*((uint32_t *)(p)))
66 #define GETU32(pt) \
  /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/chromium_org/third_party/boringssl/src/crypto/modes/
internal.h 138 #define GETU32(p) BSWAP4(*(const uint32_t *)(p))
141 #define GETU32(p) \
gcm.c 67 #undef GETU32
68 #define GETU32(p) BSWAP4(*(const uint32_t *)(p))
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(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])
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...]

Completed in 523 milliseconds