Lines Matching refs:byte
9 typedef uint8_t byte; typedef
17 static ALWAYS_INLINE void FlattenSzInBits(byte* buf, word32 sz) in FlattenSzInBits()
38 static void RIGHTSHIFTX(byte* x) in RIGHTSHIFTX()
45 byte carryIn = (x[15] & 0x01) ? 0xE1 : 0; in RIGHTSHIFTX()
47 byte carryOut = (x[i] << 7); // zero, or 0x80 in RIGHTSHIFTX()
103 static void GMULT(byte* X, byte* Y) in GMULT()
105 byte Z[AES_BLOCK_SIZE] ALIGNED_long; in GMULT()
134 void FAST_FUNC aesgcm_GHASH(byte* h, in aesgcm_GHASH()
135 const byte* a, //unsigned aSz, in aesgcm_GHASH()
136 const byte* c, unsigned cSz, in aesgcm_GHASH()
137 byte* s //, unsigned sSz in aesgcm_GHASH()
140 byte x[AES_BLOCK_SIZE] ALIGNED_long; in aesgcm_GHASH()