Home | History | Annotate | Download | only in zlib

Lines Matching defs:curr

41     unsigned curr;              /* number of index bits for current table */
148 filled is at next and has curr index bits. The code being used is huff
150 bits off of the bottom. For codes where len is less than drop + curr,
151 those top drop + curr - len bits are incremented through all values to
199 curr = root; /* current table index bits */
229 fill = 1U << curr;
261 next += mmin; /* here mmin is 1 << curr */
264 curr = len - drop;
265 left = (int)(1 << curr);
266 while (curr + drop < mmax) {
267 left -= count[curr + drop];
269 curr++;
274 used += 1U << curr;
281 (*table)[low].op = (unsigned char)curr;