Home | History | Annotate | Download | only in src

Lines Matching refs:pending_buf

229     /* 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 + beg,
801 strm->adler = crc32(strm->adler, s->pending_buf + beg,
814 strm->adler = crc32(strm->adler, s->pending_buf + beg,
832 strm->adler = crc32(strm->adler, s->pending_buf + beg,
845 strm->adler = crc32(strm->adler, s->pending_buf + beg,
998 TRY_FREE(strm, strm->state->pending_buf);
1044 ds->pending_buf = (uchf *) overlay;
1047 ds->pending_buf == Z_NULL) {
1055 zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
1057 ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);
1059 ds->l_buf = ds->pending_buf + (1+sizeof(ush))*ds->lit_bufsize;
1562 * window to pending_buf.
1568 /* Stored blocks are limited to 0xffff bytes, pending_buf is limited
1596 /* Emit a stored block if pending_buf will be full: */