Searched refs:next_out (Results 1 - 11 of 11) sorted by relevance

/darwin-on-arm/xnu/libkern/zlib/
H A Dgzio.c142 s->stream.next_out = s->outbuf = Z_NULL;
186 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
273 s->stream.next_out = s->outbuf;
428 Byte *next_out; /* == stream.next_out but not forced far (for MSDOS) */ local
435 next_out = (Byte*)buf;
436 s->stream.next_out = (Bytef*)buf;
440 *next_out++ = s->back;
441 s->stream.next_out++;
459 zmemcpy(s->stream.next_out,
[all...]
H A Dcompress.c69 stream.next_out = dest;
H A Duncompr.c71 stream.next_out = dest;
H A Dinffast.c110 unsigned char FAR *out; /* local strm->next_out */
111 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */
137 out = strm->next_out - OFF;
331 strm->next_out = out + OFF;
H A Dinflate.c53 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
105 * - Check next_in and next_out for Z_NULL on entry to inflate()
379 zmemcpy(state->window, strm->next_out - state->wsize, state->wsize);
386 zmemcpy(state->window + state->write, strm->next_out - copy, dist);
389 zmemcpy(state->window, strm->next_out - copy, copy);
434 put = strm->next_out; \
445 strm->next_out = put; \
574 strm->next_out, given the space available and the provided input--the effect
606 if (strm == Z_NULL || strm->state == Z_NULL || strm->next_out
[all...]
H A Dinfback.c150 put = strm->next_out; \
161 strm->next_out = put; \
H A Ddeflate.c558 * to avoid allocating a large strm->next_out buffer and copying into it.
569 zmemcpy(strm->next_out, strm->state->pending_out, len);
570 strm->next_out += len;
594 if (strm->next_out == Z_NULL ||
/darwin-on-arm/xnu/bsd/netinet6/
H A Dipcomp_core.c214 zs->next_out = mtod(n, u_int8_t *); \
237 zs->next_out = 0;
262 if (zs->next_out == NULL || zs->avail_out == 0) {
302 if (zs->next_out == NULL || zs->avail_out == 0) {
/darwin-on-arm/xnu/bsd/net/
H A Dppp_deflate.c309 state->strm.next_out = wptr;
312 state->strm.next_out = NULL;
351 state->strm.next_out = mtod(m, u_char *);
356 state->strm.next_out = NULL;
430 state->strm.next_out = NULL;
579 state->strm.next_out = wptr + 3;
614 --state->strm.next_out;
629 state->strm.next_out = mtod(mo, u_char *);
/darwin-on-arm/xnu/libkern/libkern/
H A Dzlib.h114 Bytef *next_out; /* next output byte should be put there */ member in struct:z_stream_s
115 uInt avail_out; /* remaining free space at next_out */
157 dropped to zero. It must update next_out and avail_out when avail_out
286 - Provide more output starting at next_out and update next_out and avail_out
350 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible
388 avail_in may be modified, but next_out and avail_out are unchanged.)
407 - Provide more output starting at next_out and update next_out and avail_out
437 uncompressed data from that block has been written to strm->next_out
[all...]
/darwin-on-arm/xnu/libkern/c++/
H A DOSKext.cpp3063 zstream.next_out = uncompressedDataBuffer;

Completed in 106 milliseconds