Lines Matching refs:xpos
106 const u8 *xpos = x; in ghash() local
113 xor_block(y, xpos); in ghash()
114 xpos += 16; in ghash()
123 if (x + xlen > xpos) { in ghash()
125 size_t last = x + xlen - xpos; in ghash()
126 os_memcpy(tmp, xpos, last); in ghash()
147 const u8 *xpos = x; in aes_gctr() local
159 xor_block(ypos, xpos); in aes_gctr()
160 xpos += AES_BLOCK_SIZE; in aes_gctr()
165 last = x + xlen - xpos; in aes_gctr()
170 *ypos++ = *xpos++ ^ tmp[i]; in aes_gctr()