/illumos-gate/usr/src/uts/common/zmod/ |
H A D | zmod.c | 46 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 D | decompress.c | 159 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 D | gzipfs.c | 82 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()
|
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | deflate.c | 432 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 D | zlib.c | 1127 (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 D | zlib.h | 403 Bytef *next_in; /* next input byte */ member
|
/illumos-gate/usr/src/contrib/zlib/ |
H A D | infback.c | 127 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 D | inffast.c | 80 in = strm->next_in; in inflate_fast() 297 strm->next_in = in; in inflate_fast()
|
H A D | deflate.c | 451 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 D | inflate.c | 463 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 D | zlib.h | 87 z_const Bytef *next_in; /* next input byte */ member
|
H A D | ChangeLog | 1278 - next_in and avail_in must be initialized before calling inflateInit or
|
/illumos-gate/usr/src/common/bzip2/ |
H A D | bzlib.c | 441 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 D | bzlib.h | 53 char *next_in; member
|
H A D | decompress.c | 59 (*((UChar*)(s->strm->next_in)))); \ 61 s->strm->next_in++; \
|
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/ |
H A D | ratz.c | 506 Bytef *next_in; /* next input byte */ member 2096 in = strm->next_in - OFF; 2291 strm->next_in = in + OFF; 2626 next = strm->next_in; \ 2637 strm->next_in = next; \ 2797 (strm->next_in == Z_NULL && strm->avail_in != 0)) 3512 len = syncsearch(&(state->have), strm->next_in, strm->avail_in); 3514 strm->next_in += len; 3696 s->stream.next_in = s->inbuf = Z_NULL; 3763 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE); [all …]
|
/illumos-gate/usr/src/boot/libsa/zfs/ |
H A D | gzip.c | 35 zs.next_in = (unsigned char *)src; in z_uncompress()
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | deflate.c | 259 state->strm.next_in = rptr; 323 state->strm.next_in = rptr;
|
H A D | zlib.h | 160 Bytef *next_in; /* next input byte */ member
|
H A D | zlib.c | 739 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 D | ctf_lib.c | 198 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 D | pnglite.c | 295 stream->next_in = data; in png_inflate()
|
/illumos-gate/usr/src/cmd/bhyve/common/ |
H A D | rfb.c | 865 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 D | savecore.c | 1051 s->strm.next_in = block; in bz2block()
|
/illumos-gate/usr/src/uts/common/os/ |
H A D | dumpsubr.c | 1968 ps->next_in = buf; in dumpsys_bzrun()
|