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

  /external/boringssl/src/crypto/aes/
internal.h 62 #define GETU32(p) SWAP(*((uint32_t *)(p)))
66 #define GETU32(pt) \
  /external/boringssl/src/crypto/modes/
internal.h 141 #define GETU32(p) BSWAP4(*(const uint32_t *)(p))
144 #define GETU32(p) \
gcm.c 68 #undef GETU32
69 #define GETU32(p) BSWAP4(*(const uint32_t *)(p))
439 hi = (uint64_t)GETU32(p) << 32 | GETU32(p + 4);
440 lo = (uint64_t)GETU32(p + 8) << 32 | GETU32(p + 12);
556 ctr = GETU32(ctx->Yi.c + 12);
668 ctr = GETU32(ctx->Yi.c + 12);
828 ctr = GETU32(ctx->Yi.c + 12);
993 ctr = GETU32(ctx->Yi.c + 12)
    [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) ^ \

Completed in 67 milliseconds