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

1234

/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzmod.c46 zs.next_in = (uchar_t *)src;
77 zs.next_in = (uchar_t *)src;
/freebsd-11-stable/usr.bin/gzip/
H A Dunbzip2.c64 bzs.next_in = pre;
80 bzs.next_in = inbuf;
H A Dunxz.c56 strm.next_in = ibuf;
80 strm.next_in = ibuf;
372 strm.next_in = buf.u8;
H A Dgzip.c683 z.next_in = (unsigned char *)inbufp;
793 #define ADVANCE() { z.next_in++; z.avail_in--; }
806 z.next_in = (unsigned char *)pre;
822 memmove(inbufp, z.next_in, z.avail_in);
824 z.next_in = (unsigned char *)inbufp;
825 in_size = read(in, z.next_in + z.avail_in,
851 if (*z.next_in != GZIP_MAGIC0) {
868 if (*z.next_in != GZIP_MAGIC1 &&
869 *z.next_in != GZIP_OMAGIC1) {
878 if (*z.next_in !
[all...]
/freebsd-11-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-11-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-11-stable/crypto/openssl/crypto/comp/
H A Dc_zlib.c153 state->istream.next_in = Z_NULL;
164 state->ostream.next_in = Z_NULL;
205 state->ostream.next_in = in;
234 state->istream.next_in = in;
311 stream.next_in = (Bytef *)source;
478 ctx->zin.next_in = NULL;
484 ctx->zout.next_in = NULL;
536 zin->next_in = ctx->ibuf;
571 zin->next_in = ctx->ibuf;
601 zout->next_in
[all...]
/freebsd-11-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-11-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;
H A Darchive_read_support_format_rar.c314 const unsigned char *next_in; member in struct:rar::rar_br
416 ((uint64_t)br->next_in[0]) << 56 |
417 ((uint64_t)br->next_in[1]) << 48 |
418 ((uint64_t)br->next_in[2]) << 40 |
419 ((uint64_t)br->next_in[3]) << 32 |
420 ((uint32_t)br->next_in[4]) << 24 |
421 ((uint32_t)br->next_in[5]) << 16 |
422 ((uint32_t)br->next_in[6]) << 8 |
423 (uint32_t)br->next_in[7];
424 br->next_in
[all...]
H A Darchive_read_support_format_lha.c139 const unsigned char *next_in; member in struct:lzh_stream
1589 lha->strm.next_in = __archive_read_ahead(a, 1, &bytes_avail);
1950 * False : we met that strm->next_in is empty, we have to get following
1990 ((uint64_t)strm->next_in[0]) << 56 |
1991 ((uint64_t)strm->next_in[1]) << 48 |
1992 ((uint64_t)strm->next_in[2]) << 40 |
1993 ((uint64_t)strm->next_in[3]) << 32 |
1994 ((uint32_t)strm->next_in[4]) << 24 |
1995 ((uint32_t)strm->next_in[5]) << 16 |
1996 ((uint32_t)strm->next_in[
[all...]
/freebsd-11-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;
H A Dmp.h94 u_int32_t next_in; /* next incoming seq to process */ member in struct:mp::__anon8877
/freebsd-11-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;
/freebsd-11-stable/contrib/gcc/
H A Dddg.h103 ddg_edge_ptr next_in; member in struct:ddg_edge
/freebsd-11-stable/usr.bin/mkuzip/
H A Dmkuz_lzma.c101 ulp->strm.next_in = iblk->data;
/freebsd-11-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:__anon4412
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-11-stable/stand/libsa/
H A Dgzipfs.c82 zf->zf_zstream.next_in = zf->zf_buf;
101 return(*(zf->zf_zstream.next_in)++);
282 zf->zf_zstream.next_in = NULL;
H A Dbzipfs.c101 bzf->bzf_bzstream.next_in = bzf->bzf_buf;
119 return(*(bzf->bzf_bzstream.next_in)++);
143 bzf->bzf_bzstream.next_in -= 4;
/freebsd-11-stable/sys/netgraph/
H A Dng_deflate.c255 priv->cx.next_in = NULL;
477 priv->cx.next_in = priv->inbuf;
480 priv->cx.next_in = priv->inbuf + 1; /* compress protocol */
598 priv->cx.next_in = priv->inbuf + offset;
652 priv->cx.next_in = priv->inbuf + 1; /* compress protocol */
655 priv->cx.next_in = priv->inbuf;

Completed in 295 milliseconds

1234