Lines Matching refs:next
161 state->x.next = state->out;
162 memcpy(state->x.next, strm->next_in, strm->avail_in);
171 On return, state->x.have and state->x.next point to the just decompressed
173 the next gzip stream or raw data, once state->x.have is depleted. Returns 0
214 state->x.next = strm->next_out - state->x.have;
252 state->x.next = state->out;
278 state->x.next += n;
340 memcpy(buf, state->x.next, n);
341 state->x.next += n;
494 return *(state->x.next)++;
549 state->x.next = state->out + (state->size << 1) - 1;
550 state->x.next[0] = (unsigned char)c;
563 if (state->x.next == state->out) {
569 state->x.next = dest;
572 state->x.next--;
573 state->x.next[0] = (unsigned char)c;
628 eol = (unsigned char *)memchr(state->x.next, '\n', n);
631 n = (unsigned)(eol - state->x.next) + 1;
635 memcpy(buf, state->x.next, n);
637 state->x.next += n;