/illumos-gate/usr/src/uts/common/zmod/ |
H A D | zmod.c | 48 zs.next_out = dst; 79 zs.next_out = dst;
|
H A D | inffast.c | 76 unsigned char FAR *out; /* local strm->next_out */ 77 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ 103 out = strm->next_out - OFF; 297 strm->next_out = out + OFF;
|
H A D | inflate.c | 33 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset) 85 * - Check next_in and next_out for Z_NULL on entry to inflate() 357 zmemcpy(state->window, strm->next_out - state->wsize, state->wsize); 364 zmemcpy(state->window + state->write, strm->next_out - copy, dist); 367 zmemcpy(state->window, strm->next_out - copy, copy); 412 put = strm->next_out; \ 423 strm->next_out = put; \ 552 strm->next_out, given the space available and the provided input--the effect 584 if (strm == Z_NULL || strm->state == Z_NULL || strm->next_out [all...] |
H A D | zlib.h | 89 Bytef *next_out; /* next output byte should be put there */ member in struct:z_stream_s 90 uInt avail_out; /* remaining free space at next_out */ 132 dropped to zero. It must update next_out and avail_out when avail_out 259 - Provide more output starting at next_out and update next_out and avail_out 323 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible 361 avail_in may be modified, but next_out and avail_out are unchanged.) 380 - Provide more output starting at next_out and update next_out and avail_out 410 uncompressed data from that block has been written to strm->next_out [all...] |
/illumos-gate/usr/src/boot/lib/libz/ |
H A D | uncompr.c | 38 stream.next_out = dest;
|
H A D | compress.c | 38 stream.next_out = dest;
|
H A D | inffast.c | 74 unsigned char FAR *out; /* local strm->next_out */ 75 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ 101 out = strm->next_out - OFF; 317 strm->next_out = out + OFF;
|
H A D | gzwrite.c | 61 strm->next_out = state->out; 62 state->x.next = strm->next_out; 103 have = (unsigned)(strm->next_out - state->x.next); 111 strm->next_out = state->out; 113 state->x.next = strm->next_out;
|
H A D | gzread.c | 170 /* Decompress from input to the provided next_out and avail_out in the state. 213 state->x.next = strm->next_out - state->x.have; 250 strm->next_out = state->out; 366 strm->next_out = (unsigned char *)buf;
|
H A D | inflate.c | 26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset) 78 * - Check next_in and next_out for Z_NULL on entry to inflate() 461 put = strm->next_out; \ 472 strm->next_out = put; \ 596 strm->next_out, given the space available and the provided input--the effect 628 if (strm == Z_NULL || strm->state == Z_NULL || strm->next_out == Z_NULL || 1234 if (updatewindow(strm, strm->next_out, out - strm->avail_out)) { 1245 UPDATE(state->check, strm->next_out - out, out);
|
H A D | infback.c | 130 put = strm->next_out; \ 141 strm->next_out = put; \
|
/illumos-gate/usr/src/boot/sys/boot/zfs/ |
H A D | gzip.c | 37 zs.next_out = dst;
|
/illumos-gate/usr/src/boot/lib/libz/test/ |
H A D | example.c | 216 c_stream.next_out = compr; 253 d_stream.next_out = uncompr; 293 c_stream.next_out = compr; 354 d_stream.next_out = uncompr; /* discard the output */ 391 c_stream.next_out = compr; 432 d_stream.next_out = uncompr; 476 c_stream.next_out = compr; 513 d_stream.next_out = uncompr;
|
H A D | infcover.c | 319 strm.next_out = out; 420 strm.next_out = (void *)&ret; 540 strm.next_out = out;
|
H A D | minigzip.c | 250 strm->next_out = out; 275 strm->next_out = (void *)buf; 310 strm->next_out = out;
|
/illumos-gate/usr/src/common/fs/ |
H A D | decompress.c | 161 zsp->next_out = NULL; 226 zsp->next_out = (unsigned char *)buf; 248 zsp->avail_out, (unsigned long)zsp->next_out);
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | zlib.h | 164 Bytef *next_out; /* next output byte should be put there */ member in struct:z_stream_s 165 uInt avail_out; /* remaining free space at next_out */ 181 dropped to zero. It must update next_out and avail_out when avail_out 279 - Provide more output starting at next_out and update next_out and avail_out 343 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible. 382 - Provide more output starting at next_out and update next_out and avail_out 417 the stream structure was inconsistent (for example if next_in or next_out 485 null). next_out nee [all...] |
H A D | deflate.c | 151 state->strm.next_out = NULL; 262 state->strm.next_out = wptr;
|
/illumos-gate/usr/src/common/bzip2/ |
H A D | bzlib.c | 486 *(s->strm->next_out) = s->zbits[s->state_out_pos]; 489 s->strm->next_out++; 719 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch; 722 s->strm->next_out++; 771 char* cs_next_out = s->strm->next_out; 849 s->strm->next_out = cs_next_out; 889 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch; 892 s->strm->next_out++; 938 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch; 941 s->strm->next_out [all...] |
H A D | bzlib.h | 58 char *next_out; member in struct:__anon1947
|
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | deflate.c | 423 state->strm.next_out = wptr; 426 state->strm.next_out = NULL; 485 state->strm.next_out = m->b_wptr; 493 state->strm.next_out = NULL; 892 state->strm.next_out = wptr; 949 --state->strm.next_out; 968 state->strm.next_out = mo->b_rptr;
|
H A D | zlib.h | 409 Bytef *next_out; /* next output byte should be put there */ member in struct:z_stream_s 410 uInt avail_out; /* remaining free space at next_out */ 431 * dropped to zero. It must update next_out and avail_out when 555 * - Provide more output starting at next_out and update next_out and 624 * inconsistent (for example if next_in or next_out was NULL), 669 * - Provide more output starting at next_out and update next_out and 712 * inconsistent (for example if next_in or next_out was NULL), 784 * history buffer (and leave next_in null). next_out nee [all...] |
/illumos-gate/usr/src/tools/ctf/cvt/ |
H A D | ctf.c | 457 off_t ptroff = (caddr_t)rb->rb_zstr.next_out - rb->rb_base; 462 rb->rb_zstr.next_out = (Bytef *)(rb->rb_ptr); 485 rb->rb_zstr.next_out = (Bytef *)rb->rb_ptr; 497 rb->rb_ptr = (caddr_t)rb->rb_zstr.next_out; 518 rb->rb_ptr = (caddr_t)rb->rb_zstr.next_out; 1212 zstr.next_out = (Bytef *)dbuf;
|
/illumos-gate/usr/src/boot/lib/libstand/ |
H A D | bzipfs.c | 235 bzf->bzf_bzstream.next_out = buf; /* where and how much */
|
H A D | gzipfs.c | 245 zf->zf_zstream.next_out = buf; /* where and how much */
|