Lines Matching refs:hold
82 unsigned long hold; /* local strm->hold */ in inflate_fast() local
109 hold = state->hold; in inflate_fast()
120 hold += (unsigned long)(*in++) << bits; in inflate_fast()
122 hold += (unsigned long)(*in++) << bits; in inflate_fast()
125 this = lcode[hold & lmask]; in inflate_fast()
128 hold >>= op; in inflate_fast()
139 hold += (unsigned long)(*in++) << bits; in inflate_fast()
142 len += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
143 hold >>= op; in inflate_fast()
147 hold += (unsigned long)(*in++) << bits; in inflate_fast()
149 hold += (unsigned long)(*in++) << bits; in inflate_fast()
152 this = dcode[hold & dmask]; in inflate_fast()
155 hold >>= op; in inflate_fast()
162 hold += (unsigned long)(*in++) << bits; in inflate_fast()
165 hold += (unsigned long)(*in++) << bits; in inflate_fast()
169 dist += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
177 hold >>= op; in inflate_fast()
286 this = dcode[this.val + (hold & ((1U << op) - 1))]; in inflate_fast()
296 this = lcode[this.val + (hold & ((1U << op) - 1))]; in inflate_fast()
314 hold &= (1U << bits) - 1; in inflate_fast()
322 state->hold = hold; in inflate_fast()