Lines Matching refs:hold
92 inflate_holder_t hold; /* local strm->hold */ local
120 hold = state->hold;
132 hold |= read64le(in) << bits;
136 hold += (unsigned long)(*in++) << bits;
138 hold += (unsigned long)(*in++) << bits;
142 here = lcode[hold & lmask];
145 hold >>= op;
160 hold |= read64le(in) << bits;
164 hold += (unsigned long)(*in++) << bits;
168 len += (unsigned)hold & ((1U << op) - 1);
169 hold >>= op;
175 hold |= read64le(in) << bits;
179 hold += (unsigned long)(*in++) << bits;
181 hold += (unsigned long)(*in++) << bits;
185 here = dcode[hold & dmask];
188 hold >>= op;
196 hold |= read64le(in) << bits;
200 hold += (unsigned long)(*in++) << bits;
203 hold += (unsigned long)(*in++) << bits;
208 dist += (unsigned)hold & ((1U << op) - 1);
216 hold >>= op;
298 here = dcode[here.val + (hold & ((1U << op) - 1))];
308 here = lcode[here.val + (hold & ((1U << op) - 1))];
327 hold &= (1U << bits) - 1;
338 state->hold = hold;
341 Assert((state->hold >> state->bits) == 0, "invalid input data state");