Lines Matching defs:next
53 code *next, *lenfix, *distfix;
63 next = fixed;
64 lenfix = next;
66 inflate_table9(LENS, state.lens, 288, &(next), &(bits), state.work);
71 distfix = next;
73 inflate_table9(DISTS, state.lens, 32, &(next), &(bits), state.work);
124 have = in(in_desc, &next); \
126 next = Z_NULL; \
139 hold += (unsigned long)(*next++) << bits; \
216 z_const unsigned char FAR *next; /* next input */
217 unsigned char FAR *put; /* next output */
254 next = strm->next_in;
255 have = next != Z_NULL ? strm->avail_in : 0;
324 zmemcpy(put, next, copy);
326 next += copy;
360 state->next = state->codes;
361 lencode = (code const FAR *)(state->next);
363 ret = inflate_table9(CODES, state->lens, 19, &(state->next),
435 state->next = state->codes;
436 lencode = (code const FAR *)(state->next);
439 &(state->next), &(lenbits), state->work);
445 distcode = (code const FAR *)(state->next);
448 state->ndist, &(state->next), &(distbits),
592 strm->next_in = next;