Home
last modified time | relevance | path

Searched refs:next_in (Results 1 – 25 of 27) sorted by relevance

12

/illumos-gate/usr/src/uts/common/zmod/
H A Dzmod.c46 zs.next_in = (uchar_t *)src; in z_uncompress()
77 zs.next_in = (uchar_t *)src; in z_compress_level()
/illumos-gate/usr/src/common/fs/
H A Ddecompress.c159 zsp->next_in = NULL; in cf_check_compressed()
197 zsp->next_in = NULL; in cf_rewind()
241 zsp->next_in = (unsigned char *)filep->fi_memp; in cf_read()
/illumos-gate/usr/src/boot/libsa/
H A Dbzipfs.c108 bzf->bzf_bzstream.next_in = bzf->bzf_buf; in bzf_fill()
126 return (*(bzf->bzf_bzstream.next_in)++); in get_byte()
150 bzf->bzf_bzstream.next_in -= 4; in check_header()
H A Dgzipfs.c82 zf->zf_zstream.next_in = zf->zf_buf; in zf_fill()
101 return (*(zf->zf_zstream.next_in)++); in get_byte()
290 zf->zf_zstream.next_in = NULL; in zf_rewind()
H A Dpkgfs.c429 pkg->pkg_zs.next_in = pkg->pkg_buf; in get_byte()
432 c = *pkg->pkg_zs.next_in; in get_byte()
433 pkg->pkg_zs.next_in++; in get_byte()
455 pkg->pkg_zs.next_in = pkg->pkg_buf; in get_zipped()
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Ddeflate.c432 state->strm.next_in = rptr; in z_compress()
458 state->strm.next_in = mp->b_rptr; in z_compress()
579 state->strm.next_in = rptr; in z_incomp()
601 state->strm.next_in = mp->b_rptr; in z_incomp()
887 state->strm.next_in = rptr; in z_decompress()
932 state->strm.next_in = mi->b_rptr; in z_decompress()
H A Dzlib.c1127 (strm->next_in == Z_NULL && strm->avail_in != 0) ||
1396 strm->adler = adler32(strm->adler, strm->next_in, len);
1398 zmemcpy(buf, strm->next_in, len);
1399 strm->next_in += len;
3734 #define NEXTBYTE (z->avail_in--, z->total_in++, *z->next_in++)
3744 if (z == Z_NULL || z->state == Z_NULL || z->next_in == Z_NULL)
3956 p = z->next_in;
3983 z->total_in += p - z->next_in;
3984 z->next_in = p;
4199 #define UPDIN {z->avail_in = n; z->total_in += p-z->next_in; z->next_in = p; }
[all …]
H A Dzlib.h403 Bytef *next_in; /* next input byte */ member
/illumos-gate/usr/src/contrib/zlib/
H A Dinfback.c127 next = strm->next_in; \
138 strm->next_in = next; \
273 next = strm->next_in; in inflateBack()
617 strm->next_in = next; in inflateBack()
H A Dinffast.c80 in = strm->next_in; in inflate_fast()
297 strm->next_in = in; in inflate_fast()
H A Ddeflate.c451 next = strm->next_in;
453 strm->next_in = (z_const Bytef *)dictionary;
476 strm->next_in = next;
815 (strm->avail_in != 0 && strm->next_in == Z_NULL) ||
1214 zmemcpy(buf, strm->next_in, len);
1223 strm->next_in += len;
1783 zmemcpy(s->window, s->strm->next_in - s->w_size, s->w_size);
1797 zmemcpy(s->window + s->strstart, s->strm->next_in - used, used);
H A Dinflate.c463 next = strm->next_in; \
474 strm->next_in = next; \
627 (strm->next_in == Z_NULL && strm->avail_in != 0)) in inflate()
1425 len = syncsearch(&(state->have), strm->next_in, strm->avail_in); in inflateSync()
1427 strm->next_in += len; in inflateSync()
H A Dzlib.h87 z_const Bytef *next_in; /* next input byte */ member
/illumos-gate/usr/src/boot/libsa/zfs/
H A Dgzip.c35 zs.next_in = (unsigned char *)src; in z_uncompress()
/illumos-gate/usr/src/common/bzip2/
H A Dbzlib.c441 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) ); in copy_input_until_stop()
442 s->strm->next_in++; in copy_input_until_stop()
459 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) ); in copy_input_until_stop()
460 s->strm->next_in++; in copy_input_until_stop()
1169 bzf->strm.next_in = buf; in BZ_API()
1319 bzf->strm.next_in = bzf->buf; in BZ_API()
1380 bzf->strm.next_in = bzf->buf; in BZ_API()
1421 *unused = bzf->strm.next_in; in BZ_API()
1458 strm.next_in = source; in BZ_API()
1506 strm.next_in = source; in BZ_API()
H A Dbzlib.h53 char *next_in; member
H A Ddecompress.c59 (*((UChar*)(s->strm->next_in)))); \
61 s->strm->next_in++; \
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/
H A Dratz.c2096 in = strm->next_in - OFF;
2291 strm->next_in = in + OFF;
2626 next = strm->next_in; \
2637 strm->next_in = next; \
3514 strm->next_in += len;
3839 s->stream.next_in = s->inbuf;
3842 return *(s->stream.next_in)++;
3887 s->stream.next_in = s->inbuf;
3901 s->stream.next_in += 2;
4021 s->stream.next_in += n;
[all …]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Ddeflate.c259 state->strm.next_in = rptr;
323 state->strm.next_in = rptr;
H A Dzlib.h160 Bytef *next_in; /* next input byte */ member
H A Dzlib.c739 if (strm->next_in == Z_NULL && strm->avail_in != 0) {
890 state->adler = adler32(state->adler, strm->next_in, len);
892 zmemcpy(buf, strm->next_in, len);
893 strm->next_in += len;
2856 #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++)
2865 if (z == Z_NULL || z->next_in == Z_NULL)
3009 p = z->next_in;
3025 z->total_in += p - z->next_in;
3026 z->next_in = p;
3106 #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;}
[all …]
/illumos-gate/usr/src/lib/libctf/common/
H A Dctf_lib.c198 czd->czd_zstr.next_in = (Bytef *)buf; in ctf_zdata_compress_buffer()
321 zs.next_in = (uchar_t *)src; in z_compress()
/illumos-gate/usr/src/common/pnglite/
H A Dpnglite.c295 stream->next_in = data; in png_inflate()
/illumos-gate/usr/src/cmd/bhyve/
H A Drfb.c865 c->rc_zstream.next_in = (Bytef *)p; in rfb_send_rect()
941 c->rc_zstream.next_in = (Bytef *)data; in rfb_send_all()
/illumos-gate/usr/src/cmd/savecore/
H A Dsavecore.c1031 s->strm.next_in = block; in bz2block()

12