Lines Matching refs:nlo
127 size_t rem, nlo, nhi; in gcm_gmult_4bit() local
129 nlo = ((const uint8_t *)Xi)[15]; in gcm_gmult_4bit()
130 nhi = nlo >> 4; in gcm_gmult_4bit()
131 nlo &= 0xf; in gcm_gmult_4bit()
133 Z.hi = Htable[nlo].hi; in gcm_gmult_4bit()
134 Z.lo = Htable[nlo].lo; in gcm_gmult_4bit()
153 nlo = ((const uint8_t *)Xi)[cnt]; in gcm_gmult_4bit()
154 nhi = nlo >> 4; in gcm_gmult_4bit()
155 nlo &= 0xf; in gcm_gmult_4bit()
166 Z.hi ^= Htable[nlo].hi; in gcm_gmult_4bit()
167 Z.lo ^= Htable[nlo].lo; in gcm_gmult_4bit()
183 size_t rem, nlo, nhi; in gcm_ghash_4bit() local
187 nlo = ((const uint8_t *)Xi)[15]; in gcm_ghash_4bit()
188 nlo ^= inp[15]; in gcm_ghash_4bit()
189 nhi = nlo >> 4; in gcm_ghash_4bit()
190 nlo &= 0xf; in gcm_ghash_4bit()
192 Z.hi = Htable[nlo].hi; in gcm_ghash_4bit()
193 Z.lo = Htable[nlo].lo; in gcm_ghash_4bit()
212 nlo = ((const uint8_t *)Xi)[cnt]; in gcm_ghash_4bit()
213 nlo ^= inp[cnt]; in gcm_ghash_4bit()
214 nhi = nlo >> 4; in gcm_ghash_4bit()
215 nlo &= 0xf; in gcm_ghash_4bit()
226 Z.hi ^= Htable[nlo].hi; in gcm_ghash_4bit()
227 Z.lo ^= Htable[nlo].lo; in gcm_ghash_4bit()