Lines Matching defs:low
51 unsigned low; /* low bits for current root entry */
52 unsigned mask; /* mask for low root bits */
159 of the low root bits of huff. This is saved in low to check for when a
206 low = (unsigned)(-1); /* trigger new sub-table when len > root */
208 mask = used - 1; /* mask for comparing low */
232 /* replicate for those indices with low len bits equal to huff */
260 if (len > root && (huff & mask) != low) {
285 low = huff & mask;
286 (*table)[low].op = (unsigned char)curr;
287 (*table)[low].bits = (unsigned char)root;
288 (*table)[low].val = (unsigned short)(next - *table);