Searched refs:pending_buf (Results 1 – 3 of 3) sorted by relevance
| /freebsd/sys/contrib/zlib/ |
| H A D | deflate.c | 505 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, LIT_BUFS); in deflateInit2_() 509 s->pending_buf == Z_NULL) { in deflateInit2_() 516 s->d_buf = (ushf *)(s->pending_buf + (s->lit_bufsize << 1)); in deflateInit2_() 517 s->l_buf = s->pending_buf + (s->lit_bufsize << 2); in deflateInit2_() 520 s->sym_buf = s->pending_buf + s->lit_bufsize; in deflateInit2_() 657 s->pending_out = s->pending_buf; in deflateResetKeep() 966 s->pending_out = s->pending_buf; in flush_pending() 976 strm->adler = crc32_z(strm->adler, s->pending_buf + (beg), \ 1111 strm->adler = crc32_z(strm->adler, s->pending_buf, in deflate() 1123 zmemcpy(s->pending_buf + s->pending, in deflate() [all …]
|
| H A D | deflate.h | 107 Bytef *pending_buf; /* output still pending */ member 293 #define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);}
|
| H A D | trees.c | 867 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len); in _tr_stored_block()
|