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

1234

/freebsd-11.0-release/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.0-release/lib/libz/
H A Duncompr.c33 stream.next_in = (z_const Bytef *)source;
H A Dcompress.c32 stream.next_in = (z_const Bytef *)source;
H A Dgzwrite.c67 /* Compress whatever is at avail_in and next_in and write to the output file.
87 got = write(state->fd, strm->next_in, strm->avail_in);
158 strm->next_in = state->in;
216 strm->next_in = state->in;
217 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
237 strm->next_in = (z_const Bytef *)buf;
278 strm->next_in = state->in;
279 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
370 strm->next_in = state->in;
460 strm->next_in
[all...]
H A Dgzread.c65 unsigned const char *q = strm->next_in;
75 strm->next_in = state->in;
114 state->strm.next_in = Z_NULL;
140 strm->next_in[0] == 31 && strm->next_in[1] == 139) {
161 memcpy(state->x.next, strm->next_in, strm->avail_in);
/freebsd-11.0-release/usr.bin/gzip/
H A Dunbzip2.c62 bzs.next_in = pre;
76 bzs.next_in = inbuf;
H A Dgzip.c643 z.next_in = (unsigned char *)inbufp;
753 #define ADVANCE() { z.next_in++; z.avail_in--; }
766 z.next_in = (unsigned char *)pre;
781 memmove(inbufp, z.next_in, z.avail_in);
783 z.next_in = (unsigned char *)inbufp;
784 in_size = read(in, z.next_in + z.avail_in,
809 if (*z.next_in != GZIP_MAGIC0) {
826 if (*z.next_in != GZIP_MAGIC1 &&
827 *z.next_in != GZIP_OMAGIC1) {
836 if (*z.next_in !
[all...]
H A Dunxz.c54 strm.next_in = ibuf;
76 strm.next_in = ibuf;
/freebsd-11.0-release/lib/libz/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.0-release/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.0-release/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.0-release/usr.sbin/ppp/
H A Ddeflate.c106 state->cx.next_in = MBUF_CTOP(mi);
128 state->cx.next_in = MBUF_CTOP(mi);
246 state->cx.next_in = MBUF_CTOP(mi);
273 state->cx.next_in = MBUF_CTOP(mi);
329 state->cx.next_in = EMPTY_BLOCK;
372 state->cx.next_in = rp;
399 state->cx.next_in = MBUF_CTOP(mi);
522 state->cx.next_in = NULL;
H A Dmp.h92 u_int32_t next_in; /* next incoming seq to process */ member in struct:mp::__anon14082
/freebsd-11.0-release/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:__anon5825
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.0-release/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.0-release/contrib/libarchive/libarchive/
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.c307 const unsigned char *next_in; member in struct:rar::rar_br
409 ((uint64_t)br->next_in[0]) << 56 |
410 ((uint64_t)br->next_in[1]) << 48 |
411 ((uint64_t)br->next_in[2]) << 40 |
412 ((uint64_t)br->next_in[3]) << 32 |
413 ((uint32_t)br->next_in[4]) << 24 |
414 ((uint32_t)br->next_in[5]) << 16 |
415 ((uint32_t)br->next_in[6]) << 8 |
416 (uint32_t)br->next_in[7];
417 br->next_in
[all...]
H A Darchive_read_support_format_lha.c139 const unsigned char *next_in; member in struct:lzh_stream
1488 lha->strm.next_in = __archive_read_ahead(a, 1, &bytes_avail);
1849 * False : we met that strm->next_in is empty, we have to get following
1889 ((uint64_t)strm->next_in[0]) << 56 |
1890 ((uint64_t)strm->next_in[1]) << 48 |
1891 ((uint64_t)strm->next_in[2]) << 40 |
1892 ((uint64_t)strm->next_in[3]) << 32 |
1893 ((uint32_t)strm->next_in[4]) << 24 |
1894 ((uint32_t)strm->next_in[5]) << 16 |
1895 ((uint32_t)strm->next_in[
[all...]
H A Darchive_read_support_filter_xz.c700 state->stream.next_in =
702 if (state->stream.next_in == NULL && avail_in < 0) {
805 state->stream.next_in = (unsigned char *)(uintptr_t)
807 if (state->stream.next_in == NULL)
863 state->stream.next_in = (unsigned char *)(uintptr_t)
865 if (state->stream.next_in == NULL && avail_in < 0) {
/freebsd-11.0-release/contrib/gcc/
H A Dddg.h103 ddg_edge_ptr next_in; member in struct:ddg_edge
/freebsd-11.0-release/usr.bin/mkuzip/
H A Dmkuz_lzma.c101 ulp->strm.next_in = iblk->data;
/freebsd-11.0-release/lib/libstand/
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;
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;

Completed in 288 milliseconds

1234