Lines Matching refs:huff
48 unsigned huff; /* Huffman code */ local
194 huff = 0; /* starting code */
231 next[(huff >> drop) + fill] = this;
236 while (huff & incr)
239 huff &= incr - 1;
240 huff += incr;
243 huff = 0;
253 if (len > root && (huff & mask) != low) {
278 low = huff & mask;
295 while (huff != 0) {
297 if (drop != 0 && (huff & mask) != low) {
306 next[huff >> drop] = this;
310 while (huff & incr)
313 huff &= incr - 1;
314 huff += incr;
317 huff = 0;