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

/barrelfish-master/lib/zlib/
H A Duncompr.c35 stream.next_in = (Bytef*)source;
H A Dcompress.c32 stream.next_in = (Bytef*)source;
H A Dgzio.c114 s->stream.next_in = s->inbuf = Z_NULL;
165 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
257 Read a byte from a gz_stream; update next_in and avail_in. Return EOF
273 s->stream.next_in = s->inbuf;
276 return *(s->stream.next_in)++;
301 if (len) s->inbuf[0] = s->stream.next_in[0];
306 s->stream.next_in = s->inbuf;
314 if (s->stream.next_in[0] != gz_magic[0] ||
315 s->stream.next_in[1] != gz_magic[1]) {
320 s->stream.next_in
[all...]
H A Dinffast.c72 unsigned char FAR *in; /* local strm->next_in */
99 in = strm->next_in - OFF;
294 strm->next_in = in + OFF;
H A Dinfback.c123 next = strm->next_in; \
134 strm->next_in = next; \
234 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
273 next = strm->next_in;
609 strm->next_in = next;
H A Dinflate.c78 * - Check next_in and next_out for Z_NULL on entry to inflate()
407 next = strm->next_in; \
418 strm->next_in = next; \
578 (strm->next_in == Z_NULL && strm->avail_in != 0))
1291 len = syncsearch(&(state->have), strm->next_in, strm->avail_in);
1293 strm->next_in += len;
H A Ddeflate.c212 /* To do: ignore strm->next_in if we use it as window */
566 (strm->next_in == Z_NULL && strm->avail_in != 0) ||
953 * allocating a large strm->next_in buffer and copying from it.
969 strm->adler = adler32(strm->adler, strm->next_in, len);
973 strm->adler = crc32(strm->adler, strm->next_in, len);
976 zmemcpy(buf, strm->next_in, len);
977 strm->next_in += len;
/barrelfish-master/lib/openssl-1.0.0d/crypto/comp/
H A Dc_zlib.c151 state->istream.next_in = Z_NULL;
163 state->ostream.next_in = Z_NULL;
202 state->ostream.next_in = in;
230 state->istream.next_in = in;
311 stream.next_in = (Bytef*)source;
494 ctx->zin.next_in = NULL;
500 ctx->zout.next_in = NULL;
554 zin->next_in = ctx->ibuf;
593 zin->next_in = ctx->ibuf;
623 zout->next_in
[all...]
/barrelfish-master/usr/slideshow/
H A Dzlib_load.c33 d_stream.next_in = src;
/barrelfish-master/include/
H A Dzlib.h83 Bytef *next_in; /* next input byte */ member in struct:z_stream_s
84 uInt avail_in; /* number of bytes available at next_in */
129 The application must update next_in and avail_in when avail_in has
252 - Compress more input starting at next_in and update next_in and avail_in
254 enough room in the output buffer), next_in and avail_in are updated and
321 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible
346 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
347 the caller. If next_in is not Z_NULL and avail_in is large enough (the exact
358 the zlib header if present: this will be done by inflate(). (So next_in an
[all...]
/barrelfish-master/usr/ramfsd/
H A Dmain.c80 d_stream.next_in = data;
/barrelfish-master/lib/lwip2/src/apps/httpd/makefsdata/
H A Dmakefsdata.c515 const void *next_in = buf; local
528 status = tdefl_compress(&g_deflator, next_in, &in_bytes, next_out, &out_bytes, TDEFL_FINISH);

Completed in 146 milliseconds