Home | History | Annotate | Download | only in zlib

Lines Matching defs:huff

45     unsigned huff;              /* Huffman code */
148 filled is at next and has curr index bits. The code being used is huff
156 of the low root bits of huff. This is saved in low to check for when a
195 huff = 0; /* starting code */
227 /* replicate for those indices with low len bits equal to huff */
233 next[(huff >> drop) + fill] = here;
236 /* backwards increment the len-bit code huff */
238 while (huff & incr)
241 huff &= incr - 1;
242 huff += incr;
245 huff = 0;
255 if (len > root && (huff & mask) != low) {
280 low = huff & mask;
290 if (huff != 0) {
294 next[huff] = here;