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