Lines Matching defs:next

38  * - Use local copies of stream next and avail values, as well as local bit
124 state->lencode = state->distcode = state->next = state->codes;
263 static code *next;
271 next = fixed;
272 lenfix = next;
274 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
279 distfix = next;
281 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
460 next = strm->next_in; \
471 strm->next_in = next; \
490 hold += (unsigned long)(*next++) << bits; \
538 next state. The NEEDBITS() macro is usually the way the state evaluates
553 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
557 PULLBYTE() directly in order to pull just enough bytes to decode the next
575 As shown above, if the next state is also the next case, then the break
589 output to the window for the next call of inflate().
604 z_const unsigned char FAR *next; /* next input */
605 unsigned char FAR *put; /* next output */
746 zmemcpy(state->head->extra + len, next,
751 state->check = crc32(state->check, next, copy);
753 next += copy;
766 len = (unsigned)(next[copy++]);
773 state->check = crc32(state->check, next, copy);
775 next += copy;
788 len = (unsigned)(next[copy++]);
795 state->check = crc32(state->check, next, copy);
797 next += copy;
899 zmemcpy(put, next, copy);
901 next += copy;
937 state->next = state->codes;
938 state->lencode = (const code FAR *)(state->next);
940 ret = inflate_table(CODES, state->lens, 19, &(state->next),
1012 state->next = state->codes;
1013 state->lencode = (const code FAR *)(state->next);
1015 ret = inflate_table(LENS, state->lens, state->nlen, &(state->next),
1022 state->distcode = (const code FAR *)(state->next);
1025 &(state->next), &(state->distbits), state->work);
1393 unsigned next;
1396 next = 0;
1397 while (next < len && got < 4) {
1398 if ((int)(buf[next]) == (got < 2 ? 0 : 0xff))
1400 else if (buf[next])
1404 next++;
1407 return next;
1509 copy->next = copy->codes + (state->next - state->codes);
1561 return (unsigned long)(state->next - state->codes);