Lines Matching refs:nlo
155 size_t rem, nlo, nhi; in gcm_gmult_4bit() local
161 nlo = ((const uint8_t *)Xi)[15]; in gcm_gmult_4bit()
162 nhi = nlo >> 4; in gcm_gmult_4bit()
163 nlo &= 0xf; in gcm_gmult_4bit()
165 Z.hi = Htable[nlo].hi; in gcm_gmult_4bit()
166 Z.lo = Htable[nlo].lo; in gcm_gmult_4bit()
185 nlo = ((const uint8_t *)Xi)[cnt]; in gcm_gmult_4bit()
186 nhi = nlo >> 4; in gcm_gmult_4bit()
187 nlo &= 0xf; in gcm_gmult_4bit()
198 Z.hi ^= Htable[nlo].hi; in gcm_gmult_4bit()
199 Z.lo ^= Htable[nlo].lo; in gcm_gmult_4bit()
233 size_t rem, nlo, nhi; in gcm_ghash_4bit() local
241 nlo = ((const uint8_t *)Xi)[15]; in gcm_ghash_4bit()
242 nlo ^= inp[15]; in gcm_ghash_4bit()
243 nhi = nlo >> 4; in gcm_ghash_4bit()
244 nlo &= 0xf; in gcm_ghash_4bit()
246 Z.hi = Htable[nlo].hi; in gcm_ghash_4bit()
247 Z.lo = Htable[nlo].lo; in gcm_ghash_4bit()
266 nlo = ((const uint8_t *)Xi)[cnt]; in gcm_ghash_4bit()
267 nlo ^= inp[cnt]; in gcm_ghash_4bit()
268 nhi = nlo >> 4; in gcm_ghash_4bit()
269 nlo &= 0xf; in gcm_ghash_4bit()
280 Z.hi ^= Htable[nlo].hi; in gcm_ghash_4bit()
281 Z.lo ^= Htable[nlo].lo; in gcm_ghash_4bit()