Lines Matching refs:hold
65 unsigned long hold; /* local strm->hold */ in inflate_fast() local
92 hold = state->hold; in inflate_fast()
103 hold += (unsigned long)(*in++) << bits; in inflate_fast()
105 hold += (unsigned long)(*in++) << bits; in inflate_fast()
108 here = lcode + (hold & lmask); in inflate_fast()
111 hold >>= op; in inflate_fast()
125 hold += (unsigned long)(*in++) << bits; in inflate_fast()
128 len += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
129 hold >>= op; in inflate_fast()
134 hold += (unsigned long)(*in++) << bits; in inflate_fast()
136 hold += (unsigned long)(*in++) << bits; in inflate_fast()
139 here = dcode + (hold & dmask); in inflate_fast()
142 hold >>= op; in inflate_fast()
149 hold += (unsigned long)(*in++) << bits; in inflate_fast()
152 hold += (unsigned long)(*in++) << bits; in inflate_fast()
156 dist += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
164 hold >>= op; in inflate_fast()
265 here = dcode + here->val + (hold & ((1U << op) - 1)); in inflate_fast()
275 here = lcode + here->val + (hold & ((1U << op) - 1)); in inflate_fast()
294 hold &= (1U << bits) - 1; in inflate_fast()
302 state->hold = hold; in inflate_fast()