Lines Matching refs:hold
85 unsigned long hold; /* local strm->hold */ in inflate_fast() local
120 hold = state->hold; in inflate_fast()
131 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast()
133 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast()
136 this = lcode[hold & lmask]; in inflate_fast()
139 hold >>= op; in inflate_fast()
153 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast()
156 len += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
157 hold >>= op; in inflate_fast()
162 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast()
164 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast()
167 this = dcode[hold & dmask]; in inflate_fast()
170 hold >>= op; in inflate_fast()
177 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast()
180 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast()
184 dist += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
192 hold >>= op; in inflate_fast()
300 this = dcode[this.val + (hold & ((1U << op) - 1))]; in inflate_fast()
310 this = lcode[this.val + (hold & ((1U << op) - 1))]; in inflate_fast()
329 hold &= (1U << bits) - 1; in inflate_fast()
337 state->hold = hold; in inflate_fast()