Home | History | Annotate | Download | only in infback9

Lines Matching defs:low

51     unsigned low;               /* low bits for current root entry */
52 unsigned mask; /* mask for low root bits */
153 of the low root bits of huff. This is saved in low to check for when a
200 low = (unsigned)(-1); /* trigger new sub-table when len > root */
202 mask = used - 1; /* mask for comparing low */
226 /* replicate for those indices with low len bits equal to huff */
253 if (len > root && (huff & mask) != low) {
278 low = huff & mask;
279 (*table)[low].op = (unsigned char)curr;
280 (*table)[low].bits = (unsigned char)root;
281 (*table)[low].val = (unsigned short)(next - *table);
297 if (drop != 0 && (huff & mask) != low) {