Lines Matching defs:root
28 requested root table index bits, and on return it is the actual root
43 unsigned root; /* number of index bits for root table */
51 unsigned low; /* low bits for current root entry */
52 unsigned mask; /* mask for low root bits */
112 /* bound code lengths, force root to be within code lengths */
113 root = *bits;
116 if (root > max) root = max;
128 if (root < min) root = min;
157 root is the number of index bits for the root table. When len exceeds
158 root, sub-tables are created pointed to by the root entry with an index
159 of the low root bits of huff. This is saved in low to check for when a
160 new sub-table should be started. drop is zero when the root table is
161 being filled, and drop is root when sub-tables are being filled.
171 the initial root table size constants. See the comments in inftrees.h
204 curr = root; /* current table index bits */
206 low = (unsigned)(-1); /* trigger new sub-table when len > root */
207 used = 1U << root; /* use root table entries */
260 if (len > root && (huff & mask) != low) {
263 drop = root;
284 /* point entry in root table to sub-table */
287 (*table)[low].bits = (unsigned char)root;
304 *bits = root;