HomeSort by: relevance | last modified time | path
    Searched defs:huff (Results 1 - 2 of 2) sorted by relevancy

  /src/common/dist/zlib/contrib/infback9/
inftree9.c 43 unsigned huff; /* Huffman code */ local in function:inflate_table9
140 filled is at next and has curr index bits. The code being used is huff
148 of the low root bits of huff. This is saved in low to check for when a
189 huff = 0; /* starting code */
221 /* replicate for those indices with low len bits equal to huff */
226 next[(huff >> drop) + fill] = this;
229 /* backwards increment the len-bit code huff */
231 while (huff & incr)
234 huff &= incr - 1;
235 huff += incr
    [all...]
  /src/common/dist/zlib/
inftrees.c 45 unsigned huff; /* Huffman code */ local in function:inflate_table
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
    [all...]

Completed in 12 milliseconds