Lines Matching full:hold
64 unsigned long hold; /* local strm->hold */ in inflate_fast() local
91 hold = state->hold; in inflate_fast()
102 hold += (unsigned long)(*in++) << bits; in inflate_fast()
104 hold += (unsigned long)(*in++) << bits; in inflate_fast()
107 here = lcode + (hold & lmask); in inflate_fast()
110 hold >>= op; in inflate_fast()
124 hold += (unsigned long)(*in++) << bits; in inflate_fast()
127 len += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
128 hold >>= op; in inflate_fast()
133 hold += (unsigned long)(*in++) << bits; in inflate_fast()
135 hold += (unsigned long)(*in++) << bits; in inflate_fast()
138 here = dcode + (hold & dmask); in inflate_fast()
141 hold >>= op; in inflate_fast()
148 hold += (unsigned long)(*in++) << bits; in inflate_fast()
151 hold += (unsigned long)(*in++) << bits; in inflate_fast()
155 dist += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
163 hold >>= op; in inflate_fast()
264 here = dcode + here->val + (hold & ((1U << op) - 1)); in inflate_fast()
274 here = lcode + here->val + (hold & ((1U << op) - 1)); in inflate_fast()
293 hold &= (1U << bits) - 1; in inflate_fast()
301 state->hold = hold; in inflate_fast()