Lines Matching refs:next
84 static code *next;
92 next = fixed;
93 lenfix = next;
95 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
100 distfix = next;
102 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
123 next = strm->next_in; \
134 strm->next_in = next; \
152 have = in(in_desc, &next); \
154 next = Z_NULL; \
167 hold += (unsigned long)(*next++) << bits; \
249 unsigned char FAR *next; /* next input */
250 unsigned char FAR *put; /* next output */
273 next = strm->next_in;
274 have = next != Z_NULL ? strm->avail_in : 0;
338 zmemcpy(put, next, copy);
340 next += copy;
376 state->next = state->codes;
377 state->lencode = (code const FAR *)(state->next);
379 ret = inflate_table(CODES, state->lens, 19, &(state->next),
442 state->next = state->codes;
443 state->lencode = (code const FAR *)(state->next);
445 ret = inflate_table(LENS, state->lens, state->nlen, &(state->next),
452 state->distcode = (code const FAR *)(state->next);
455 next), &(state->distbits), state->work);
609 strm->next_in = next;