Lines Matching defs:next_in
506 Bytef *next_in; /* next input byte */
507 uInt avail_in; /* number of bytes available at next_in */
2069 unsigned char FAR *in; /* local strm->next_in */
2096 in = strm->next_in - OFF;
2291 strm->next_in = in + OFF;
2626 next = strm->next_in; \
2637 strm->next_in = next; \
2797 (strm->next_in == Z_NULL && strm->avail_in != 0))
3512 len = syncsearch(&(state->have), strm->next_in, strm->avail_in);
3514 strm->next_in += len;
3696 s->stream.next_in = s->inbuf = Z_NULL;
3763 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
3823 Read a byte from a gz_stream; update next_in and avail_in. Return EOF
3839 s->stream.next_in = s->inbuf;
3842 return *(s->stream.next_in)++;
3867 if (len != 0) s->stream.avail_in++, s->stream.next_in--;
3869 s->stream.avail_in++, s->stream.next_in--;
3882 if (len) s->inbuf[0] = s->stream.next_in[0];
3887 s->stream.next_in = s->inbuf;
3895 if (s->stream.next_in[0] != gz_magic[0] ||
3896 s->stream.next_in[1] != gz_magic[1]) {
3901 s->stream.next_in += 2;
4018 zmemcpy(s->stream.next_out, s->stream.next_in, n);
4021 s->stream.next_in += n;
4046 s->stream.next_in = s->inbuf;