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

1234

/freebsd-13-stable/sys/contrib/zstd/zlibWrapper/examples/
H A Dfitblk_original.c83 def->next_in = raw;
114 def->next_in = raw;
184 inf.next_in = Z_NULL;
194 inf.next_in = blk;
209 inf.next_in = tmp;
H A Dfitblk.c88 def->next_in = raw;
124 def->next_in = raw;
201 inf.next_in = Z_NULL;
211 inf.next_in = blk;
228 inf.next_in = tmp;
H A Dexample.c240 c_stream.next_in = (z_const unsigned char *)hello;
276 d_stream.next_in = compr;
324 c_stream.next_in = uncompr;
335 c_stream.next_in = compr;
342 c_stream.next_in = uncompr;
372 d_stream.next_in = compr;
415 c_stream.next_in = (z_const unsigned char *)hello;
451 d_stream.next_in = compr;
504 c_stream.next_in = (z_const unsigned char *)hello;
532 d_stream.next_in
[all...]
H A Dexample_original.c232 c_stream.next_in = (z_const unsigned char *)hello;
268 d_stream.next_in = compr;
316 c_stream.next_in = uncompr;
327 c_stream.next_in = compr;
334 c_stream.next_in = uncompr;
364 d_stream.next_in = compr;
407 c_stream.next_in = (z_const unsigned char *)hello;
443 d_stream.next_in = compr;
496 c_stream.next_in = (z_const unsigned char *)hello;
524 d_stream.next_in
[all...]
/freebsd-13-stable/usr.bin/gzip/
H A Dunbzip2.c64 bzs.next_in = pre;
80 bzs.next_in = inbuf;
/freebsd-13-stable/sys/contrib/zlib/
H A Dgzwrite.c55 strm->next_in = NULL;
70 /* Compress whatever is at avail_in and next_in and write to the output file.
92 writ = write(state->fd, strm->next_in, put);
98 strm->next_in += writ;
170 strm->next_in = state->in;
210 state->strm.next_in = state->in;
211 have = (unsigned)((state->strm.next_in + state->strm.avail_in) -
231 state->strm.next_in = (z_const Bytef *)buf;
337 strm->next_in = state->in;
338 have = (unsigned)((strm->next_in
[all...]
H A Dcompress.c46 stream.next_in = (z_const Bytef *)source;
H A Duncompr.c49 stream.next_in = (z_const Bytef *)source;
/freebsd-13-stable/sys/contrib/zlib/test/
H A Dinfcover.c295 strm.next_in = Z_NULL;
316 strm.next_in = in;
357 strm.next_in = Z_NULL;
375 strm.next_in = Z_NULL;
381 strm.next_in = Z_NULL;
415 strm.next_in = Z_NULL;
418 strm.next_in = (void *)"\x63";
431 strm.next_in = (void *)"\x80";
435 strm.next_in = (void *)"\0\0\xff\xff";
455 return 0; /* no input (already provided at next_in) */
[all...]
H A Dexample.c215 c_stream.next_in = (z_const unsigned char *)hello;
251 d_stream.next_in = compr;
299 c_stream.next_in = uncompr;
310 c_stream.next_in = compr;
317 c_stream.next_in = uncompr;
347 d_stream.next_in = compr;
390 c_stream.next_in = (z_const unsigned char *)hello;
426 d_stream.next_in = compr;
479 c_stream.next_in = (z_const unsigned char *)hello;
507 d_stream.next_in
[all...]
/freebsd-13-stable/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-zlib.c102 stream.next_in = (Byte *)source;
156 stream.next_in = (Byte *)source;
/freebsd-13-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzmod.c67 zs.next_in = (uchar_t *)src;
100 zs.next_in = (uchar_t *)src;
/freebsd-13-stable/contrib/libevent/test/
H A Dregress_zlib.c146 p->next_in = (unsigned char *)v_in[0].iov_base;
149 p->next_in = 0;
200 p->next_in = (unsigned char *)v_in[0].iov_base;
203 p->next_in = 0;
/freebsd-13-stable/contrib/ntp/sntp/libevent/test/
H A Dregress_zlib.c146 p->next_in = v_in[0].iov_base;
149 p->next_in = 0;
200 p->next_in = v_in[0].iov_base;
203 p->next_in = 0;
/freebsd-13-stable/sys/contrib/zstd/zlibWrapper/
H A Dgzwrite.c57 strm->next_in = NULL;
72 /* Compress whatever is at avail_in and next_in and write to the output file.
94 writ = (int)write(state.state->fd, strm->next_in, put);
100 strm->next_in += writ;
172 strm->next_in = state.state->in;
212 state.state->strm.next_in = state.state->in;
213 have = (unsigned)((state.state->strm.next_in + state.state->strm.avail_in) -
233 state.state->strm.next_in = (z_const Bytef *)buf;
340 strm->next_in = state.state->in;
341 have = (unsigned)((strm->next_in
[all...]
H A Dgzread.c78 unsigned const char *q = strm->next_in;
88 strm->next_in = state.state->in;
125 state.state->strm.next_in = Z_NULL;
151 ((strm->next_in[0] == 31 && strm->next_in[1] == 139) /* gz header */
152 || (strm->next_in[0] == 40 && strm->next_in[1] == 181))) { /* zstd header */
173 memcpy(state.state->x.next, strm->next_in, strm->avail_in);
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_cab.c137 const unsigned char *next_in; member in struct:lzx_stream
1430 cab->stream.next_in = NULL;
1478 * A bug in zlib.h: stream.next_in should be marked 'const'
1480 * next_in pointer, only reads it). The result: this ugly
1483 cab->stream.next_in = (Bytef *)(uintptr_t)d;
1493 if (cab->stream.next_in[0] != 0x43)
1496 cab->stream.next_in[1] != 0x4b)
1498 } else if (cab->stream.next_in[0] != 0x4b)
1510 if (mszip == 1 && cab->stream.next_in[0] != 0x4b)
1512 else if (mszip == 2 && (cab->stream.next_in[
[all...]
H A Darchive_read_support_filter_compress.c96 const unsigned char *next_in; member in struct:private_data
445 state->next_in
450 if (ret < 0 || state->next_in == NULL)
454 state->bit_buffer |= *state->next_in++ << state->bits_avail;
/freebsd-13-stable/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_zlib.c150 stream.next_in = (Byte *)source;
206 stream.next_in = (Byte *)source;
/freebsd-13-stable/sys/netgraph/
H A Dng_deflate.c253 priv->cx.next_in = NULL;
454 priv->cx.next_in = priv->inbuf;
457 priv->cx.next_in = priv->inbuf + 1; /* compress protocol */
590 priv->cx.next_in = priv->inbuf + offset;
620 priv->cx.next_in = EMPTY_BLOCK;
662 priv->cx.next_in = headbuf;
670 priv->cx.next_in =
674 priv->cx.next_in = priv->inbuf;
/freebsd-13-stable/crypto/openssl/crypto/comp/
H A Dc_zlib.c134 state->istream.next_in = Z_NULL;
143 state->ostream.next_in = Z_NULL;
175 state->ostream.next_in = in;
196 state->istream.next_in = in;
388 zin->next_in = ctx->ibuf;
423 zin->next_in = ctx->ibuf;
455 zout->next_in = (void *)in;
508 zout->next_in = NULL;
/freebsd-13-stable/usr.sbin/ppp/
H A Ddeflate.c108 state->cx.next_in = MBUF_CTOP(mi);
130 state->cx.next_in = MBUF_CTOP(mi);
248 state->cx.next_in = MBUF_CTOP(mi);
275 state->cx.next_in = MBUF_CTOP(mi);
331 state->cx.next_in = EMPTY_BLOCK;
374 state->cx.next_in = rp;
401 state->cx.next_in = MBUF_CTOP(mi);
524 state->cx.next_in = NULL;
/freebsd-13-stable/contrib/xz/src/liblzma/api/lzma/
H A Dbase.h296 * pending in *next_in). Call lzma_code() with LZMA_FULL_FLUSH
333 * (the last bytes can still be pending in next_in).
460 * - In contrast to zlib, strm->next_in and strm->next_out are
486 const uint8_t *next_in; /**< Pointer to the next input byte. */ member in struct:__anon6581
487 size_t avail_in; /**< Number of available input bytes in next_in. */
556 * using this function. The application has to update strm->next_in,
/freebsd-13-stable/contrib/netbsd-tests/crypto/opencrypto/
H A Dh_comp_zlib.c72 z.next_in = buf1;
H A Dh_comp_zlib_rnd.c76 z.next_in = buf1;

Completed in 131 milliseconds

1234