Lines Matching refs:nlo
157 size_t rem, nlo, nhi; in gcm_gmult_4bit() local
163 nlo = ((const uint8_t *)Xi)[15]; in gcm_gmult_4bit()
164 nhi = nlo >> 4; in gcm_gmult_4bit()
165 nlo &= 0xf; in gcm_gmult_4bit()
167 Z.hi = Htable[nlo].hi; in gcm_gmult_4bit()
168 Z.lo = Htable[nlo].lo; in gcm_gmult_4bit()
187 nlo = ((const uint8_t *)Xi)[cnt]; in gcm_gmult_4bit()
188 nhi = nlo >> 4; in gcm_gmult_4bit()
189 nlo &= 0xf; in gcm_gmult_4bit()
200 Z.hi ^= Htable[nlo].hi; in gcm_gmult_4bit()
201 Z.lo ^= Htable[nlo].lo; in gcm_gmult_4bit()
235 size_t rem, nlo, nhi; in gcm_ghash_4bit() local
243 nlo = ((const uint8_t *)Xi)[15]; in gcm_ghash_4bit()
244 nlo ^= inp[15]; in gcm_ghash_4bit()
245 nhi = nlo >> 4; in gcm_ghash_4bit()
246 nlo &= 0xf; in gcm_ghash_4bit()
248 Z.hi = Htable[nlo].hi; in gcm_ghash_4bit()
249 Z.lo = Htable[nlo].lo; in gcm_ghash_4bit()
268 nlo = ((const uint8_t *)Xi)[cnt]; in gcm_ghash_4bit()
269 nlo ^= inp[cnt]; in gcm_ghash_4bit()
270 nhi = nlo >> 4; in gcm_ghash_4bit()
271 nlo &= 0xf; in gcm_ghash_4bit()
282 Z.hi ^= Htable[nlo].hi; in gcm_ghash_4bit()
283 Z.lo ^= Htable[nlo].lo; in gcm_ghash_4bit()