Lines Matching defs:low
57 unsigned low; /* low bits for current root entry */
58 unsigned mask; /* mask for low root bits */
165 of the low root bits of huff. This is saved in low to check for when a
213 low = (unsigned)(-1); /* trigger new sub-table when len > root */
215 mask = used - 1; /* mask for comparing low */
238 /* replicate for those indices with low len bits equal to huff */
266 if (len > root && (huff & mask) != low) {
290 low = huff & mask;
291 (*table)[low].op = (unsigned char)curr;
292 (*table)[low].bits = (unsigned char)root;
293 (*table)[low].val = (unsigned short)(next - *table);
309 if (drop != 0 && (huff & mask) != low) {