Lines Matching refs:huff
50 unsigned huff; /* Huffman code */ local
203 huff = 0; /* starting code */
240 next[(huff >> drop) + fill] = this;
245 while (huff & incr)
248 huff &= incr - 1;
249 huff += incr;
252 huff = 0;
262 if (len > root && (huff & mask) != low) {
286 low = huff & mask;
303 while (huff != 0) {
305 if (drop != 0 && (huff & mask) != low) {
313 next[huff >> drop] = this;
317 while (huff & incr)
320 huff &= incr - 1;
321 huff += incr;
324 huff = 0;