Lines Matching refs:next
142 state->x.next = state->out;
143 memcpy(state->x.next, strm->next_in, strm->avail_in);
152 On return, state->x.have and state->x.next point to the just decompressed
154 the next gzip stream or raw data, once state->x.have is depleted. Returns 0
192 state->x.next = strm->next_out - state->x.have;
223 state->x.next = state->out;
246 state->x.next += n;
295 memcpy(buf, state->x.next, n);
296 state->x.next += n;
430 return *(state->x.next)++;
469 state->x.next = state->out + (state->size << 1) - 1;
470 state->x.next[0] = (unsigned char)c;
483 if (state->x.next == state->out) {
488 state->x.next = dest;
491 state->x.next--;
492 state->x.next[0] = (unsigned char)c;
538 eol = (unsigned char *)memchr(state->x.next, '\n', n);
540 n = (unsigned)(eol - state->x.next) + 1;
543 memcpy(buf, state->x.next, n);
545 state->x.next += n;