Lines Matching defs:in
3 * For conditions of distribution and use, see copyright notice in zlib.h
21 inflate execution time is spent in this routine.
35 BAD -- error in block data
52 z_const unsigned char FAR *in; /* local strm->next_in */
53 z_const unsigned char FAR *last; /* have enough input while in < last */
61 unsigned whave; /* valid bytes in the window */
79 in = strm->next_in;
80 last = in + (strm->avail_in - 5);
102 hold += (unsigned long)(*in++) << bits;
104 hold += (unsigned long)(*in++) << bits;
124 hold += (unsigned long)(*in++) << bits;
133 hold += (unsigned long)(*in++) << bits;
135 hold += (unsigned long)(*in++) << bits;
148 hold += (unsigned long)(*in++) << bits;
151 hold += (unsigned long)(*in++) << bits;
166 op = (unsigned)(out - beg); /* max distance in output */
168 op = dist - op; /* distance back in window */
226 else { /* contiguous in window */
287 } while (in < last && out < end);
289 /* return unused bytes (on entry, bits < 8, so in won't go too far back) */
291 in -= len;
296 strm->next_in = in;
298 strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));