Lines Matching refs:nlo
133 size_t rem, nlo, nhi; in gcm_gmult_4bit() local
135 nlo = ((const uint8_t *)Xi)[15]; in gcm_gmult_4bit()
136 nhi = nlo >> 4; in gcm_gmult_4bit()
137 nlo &= 0xf; in gcm_gmult_4bit()
139 Z.hi = Htable[nlo].hi; in gcm_gmult_4bit()
140 Z.lo = Htable[nlo].lo; in gcm_gmult_4bit()
159 nlo = ((const uint8_t *)Xi)[cnt]; in gcm_gmult_4bit()
160 nhi = nlo >> 4; in gcm_gmult_4bit()
161 nlo &= 0xf; in gcm_gmult_4bit()
172 Z.hi ^= Htable[nlo].hi; in gcm_gmult_4bit()
173 Z.lo ^= Htable[nlo].lo; in gcm_gmult_4bit()
189 size_t rem, nlo, nhi; in gcm_ghash_4bit() local
193 nlo = ((const uint8_t *)Xi)[15]; in gcm_ghash_4bit()
194 nlo ^= inp[15]; in gcm_ghash_4bit()
195 nhi = nlo >> 4; in gcm_ghash_4bit()
196 nlo &= 0xf; in gcm_ghash_4bit()
198 Z.hi = Htable[nlo].hi; in gcm_ghash_4bit()
199 Z.lo = Htable[nlo].lo; in gcm_ghash_4bit()
218 nlo = ((const uint8_t *)Xi)[cnt]; in gcm_ghash_4bit()
219 nlo ^= inp[cnt]; in gcm_ghash_4bit()
220 nhi = nlo >> 4; in gcm_ghash_4bit()
221 nlo &= 0xf; in gcm_ghash_4bit()
232 Z.hi ^= Htable[nlo].hi; in gcm_ghash_4bit()
233 Z.lo ^= Htable[nlo].lo; in gcm_ghash_4bit()