Lines Matching refs:drop
41 unsigned drop; /* code bits to drop for sub-table */ in inflate_table() local
200 drop = 0; /* current bits to drop from code for index */ in inflate_table()
212 this.bits = (unsigned char)(len - drop); in inflate_table()
226 incr = 1U << (len - drop); in inflate_table()
231 next[(huff >> drop) + fill] = this; in inflate_table()
255 if (drop == 0) in inflate_table()
256 drop = root; in inflate_table()
262 curr = len - drop; in inflate_table()
264 while (curr + drop < max) { in inflate_table()
265 left -= count[curr + drop]; in inflate_table()
292 this.bits = (unsigned char)(len - drop); in inflate_table()
296 if (drop != 0 && (huff & mask) != low) { in inflate_table()
297 drop = 0; in inflate_table()
304 next[huff >> drop] = this; in inflate_table()