Lines Matching defs:next
93 static code *next;
101 next = fixed;
102 lenfix = next;
104 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
109 distfix = next;
111 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
132 next = strm->next_in; \
143 strm->next_in = next; \
161 have = in(in_desc, &next); \
163 next = Z_NULL; \
176 hold += (unsigned long)(*next++) << bits; \
258 z_const unsigned char FAR *next; /* next input */
259 unsigned char FAR *put; /* next output */
282 next = strm->next_in;
283 have = next != Z_NULL ? strm->avail_in : 0;
347 zmemcpy(put, next, copy);
349 next += copy;
385 state->next = state->codes;
386 state->lencode = (code const FAR *)(state->next);
388 ret = inflate_table(CODES, state->lens, 19, &(state->next),
459 state->next = state->codes;
460 state->lencode = (code const FAR *)(state->next);
462 ret = inflate_table(LENS, state->lens, state->nlen, &(state->next),
469 state->distcode = (code const FAR *)(state->next);
472 &(state->next), &(state->distbits), state->work);
626 strm->next_in = next;