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

/barrelfish-master/lib/zlib/
H A Duncompr.c40 stream.next_out = dest;
H A Dgzio.c115 s->stream.next_out = s->outbuf = Z_NULL;
159 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
246 s->stream.next_out = s->outbuf;
401 Byte *next_out; /* == stream.next_out but not forced far (for MSDOS) */ local
408 next_out = (Byte*)buf;
409 s->stream.next_out = (Bytef*)buf;
413 *next_out++ = s->back;
414 s->stream.next_out++;
432 zmemcpy(s->stream.next_out,
[all...]
H A Dcompress.c38 stream.next_out = dest;
H A Dinffast.c74 unsigned char FAR *out; /* local strm->next_out */
75 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */
101 out = strm->next_out - OFF;
295 strm->next_out = out + OFF;
H A Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
78 * - Check next_in and next_out for Z_NULL on entry to inflate()
350 zmemcpy(state->window, strm->next_out - state->wsize, state->wsize);
357 zmemcpy(state->window + state->write, strm->next_out - copy, dist);
360 zmemcpy(state->window, strm->next_out - copy, copy);
405 put = strm->next_out; \
416 strm->next_out = put; \
545 strm->next_out, given the space available and the provided input--the effect
577 if (strm == Z_NULL || strm->state == Z_NULL || strm->next_out
[all...]
H A Dinfback.c121 put = strm->next_out; \
132 strm->next_out = put; \
H A Ddeflate.c529 * to avoid allocating a large strm->next_out buffer and copying into it.
540 zmemcpy(strm->next_out, strm->state->pending_out, len);
541 strm->next_out += len;
565 if (strm->next_out == Z_NULL ||
/barrelfish-master/lib/openssl-1.0.0d/crypto/comp/
H A Dc_zlib.c152 state->istream.next_out = Z_NULL;
164 state->ostream.next_out = Z_NULL;
204 state->ostream.next_out = out;
232 state->istream.next_out = out;
316 stream.next_out = dest;
496 ctx->zin.next_out = NULL;
502 ctx->zout.next_out = NULL;
559 zin->next_out = (unsigned char *)out;
619 zout->next_out = ctx->obuf;
650 zout->next_out
[all...]
/barrelfish-master/usr/slideshow/
H A Dzlib_load.c36 d_stream.next_out = dst;
/barrelfish-master/lib/lwip2/src/apps/httpd/makefsdata/
H A Dmakefsdata.c516 void *next_out = s_outbuf; local
528 status = tdefl_compress(&g_deflator, next_in, &in_bytes, next_out, &out_bytes, TDEFL_FINISH);
544 next_out = s_checkbuf;
548 dec_status = tinfl_decompress(&inflator, (const mz_uint8 *)ret_buf, &dec_in_bytes, s_checkbuf, (mz_uint8 *)next_out, &dec_out_bytes, 0);
/barrelfish-master/include/
H A Dzlib.h87 Bytef *next_out; /* next output byte should be put there */ member in struct:z_stream_s
88 uInt avail_out; /* remaining free space at next_out */
130 dropped to zero. It must update next_out and avail_out when avail_out
257 - Provide more output starting at next_out and update next_out and avail_out
321 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible
359 avail_in may be modified, but next_out and avail_out are unchanged.)
378 - Provide more output starting at next_out and update next_out and avail_out
408 uncompressed data from that block has been written to strm->next_out
[all...]
/barrelfish-master/usr/ramfsd/
H A Dmain.c89 d_stream.next_out = chunk;

Completed in 468 milliseconds