Lines Matching refs:hold
103 unsigned long hold; /* local strm->hold */ in inflate_fast() local
130 hold = state->hold; in inflate_fast()
141 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast()
143 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast()
146 this = lcode[hold & lmask]; in inflate_fast()
149 hold >>= op; in inflate_fast()
160 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast()
163 len += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
164 hold >>= op; in inflate_fast()
168 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast()
170 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast()
173 this = dcode[hold & dmask]; in inflate_fast()
176 hold >>= op; in inflate_fast()
183 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast()
186 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast()
190 dist += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
198 hold >>= op; in inflate_fast()
308 this = dcode[this.val + (hold & ((1U << op) - 1))]; in inflate_fast()
318 this = lcode[this.val + (hold & ((1U << op) - 1))]; in inflate_fast()
336 hold &= (1U << bits) - 1; in inflate_fast()
344 state->hold = hold; in inflate_fast()