Lines Matching refs:xpos
163 const uint8_t *xpos = x; in ghash() local
170 xor_block(y, xpos, AES_BLOCK_LEN); in ghash()
171 xpos += 16; in ghash()
180 if (x + xlen > xpos) { in ghash()
182 size_t last = x + xlen - xpos; in ghash()
183 memcpy(tmp, xpos, last); in ghash()
209 const uint8_t *xpos = x; in aes_gctr() local
222 xor_block(ypos, xpos, AES_BLOCK_LEN); in aes_gctr()
223 xpos += AES_BLOCK_LEN; in aes_gctr()
228 last = x + xlen - xpos; in aes_gctr()
233 *ypos++ = *xpos++ ^ tmp[i]; in aes_gctr()