Searched refs:pending_buf (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/uts/common/zmod/
H A Ddeflate.c238 /* We overlay pending_buf and d_buf+l_buf. This works since the average
300 s->pending_buf = (uchf *) overlay;
304 s->pending_buf == Z_NULL) {
311 s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
379 s->pending_out = s->pending_buf;
522 * pending_buf.
553 strm->state->pending_out = strm->state->pending_buf;
622 strm->adler = crc32(strm->adler, s->pending_buf,
665 strm->adler = crc32(strm->adler, s->pending_buf + beg,
676 strm->adler = crc32(strm->adler, s->pending_buf
[all...]
H A Ddeflate.h97 Bytef *pending_buf; /* output still pending */ member in struct:internal_state
98 ulg pending_buf_size; /* size of pending_buf */
266 * IN assertion: there is enough room in pending_buf.
268 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}
/illumos-gate/usr/src/boot/lib/libz/
H A Ddeflate.c229 /* We overlay pending_buf and d_buf+l_buf. This works since the average
302 s->pending_buf = (uchf *) overlay;
306 s->pending_buf == Z_NULL) {
313 s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
408 s->pending_out = s->pending_buf;
626 * pending_buf.
660 s->pending_out = s->pending_buf;
729 strm->adler = crc32(strm->adler, s->pending_buf,
772 strm->adler = crc32(strm->adler, s->pending_buf + beg,
783 strm->adler = crc32(strm->adler, s->pending_buf
[all...]
H A Ddeflate.h100 Bytef *pending_buf; /* output still pending */ member in struct:internal_state
101 ulg pending_buf_size; /* size of pending_buf */
276 * IN assertion: there is enough room in pending_buf.
278 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c366 Bytef *pending_buf; /* output still pending */ member in struct:deflate_state
367 ulg pending_buf_size; /* size of pending_buf */
566 * pending_buf.
568 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c); }
867 * We overlay pending_buf and d_buf+l_buf. This works since
925 s->pending_buf = (uchf *) overlay;
929 s->pending_buf == Z_NULL) {
936 s->l_buf = s->pending_buf + (1+sizeof (ush))*s->lit_bufsize;
1012 s->pending_out = s->pending_buf;
1071 * pending_buf
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c219 Bytef *pending_buf; /* output still pending */ member in struct:deflate_state
392 * IN assertion: there is enough room in pending_buf.
394 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}
639 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 2*sizeof(ush));
642 s->pending_buf == Z_NULL) {
647 s->d_buf = (ushf *) &(s->pending_buf[s->lit_bufsize]);
648 s->l_buf = (uchf *) &(s->pending_buf[3*s->lit_bufsize]);
649 /* We overlay pending_buf and d_buf+l_buf. This works since the average
678 s->pending_out = s->pending_buf;
695 * pending_buf
[all...]

Completed in 77 milliseconds