pending_buf       291 lib/zlib/deflate.c     s->pending_buf = (uchf *) overlay;
pending_buf       295 lib/zlib/deflate.c         s->pending_buf == Z_NULL) {
pending_buf       302 lib/zlib/deflate.c     s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
pending_buf       370 lib/zlib/deflate.c     s->pending_out = s->pending_buf;
pending_buf       544 lib/zlib/deflate.c         strm->state->pending_out = strm->state->pending_buf;
pending_buf       613 lib/zlib/deflate.c                     strm->adler = crc32(strm->adler, s->pending_buf,
pending_buf       656 lib/zlib/deflate.c                         strm->adler = crc32(strm->adler, s->pending_buf + beg,
pending_buf       667 lib/zlib/deflate.c                 strm->adler = crc32(strm->adler, s->pending_buf + beg,
pending_buf       685 lib/zlib/deflate.c                         strm->adler = crc32(strm->adler, s->pending_buf + beg,
pending_buf       698 lib/zlib/deflate.c                 strm->adler = crc32(strm->adler, s->pending_buf + beg,
pending_buf       716 lib/zlib/deflate.c                         strm->adler = crc32(strm->adler, s->pending_buf + beg,
pending_buf       729 lib/zlib/deflate.c                 strm->adler = crc32(strm->adler, s->pending_buf + beg,
pending_buf       875 lib/zlib/deflate.c     TRY_FREE(strm, strm->state->pending_buf);
pending_buf       921 lib/zlib/deflate.c     ds->pending_buf = (uchf *) overlay;
pending_buf       924 lib/zlib/deflate.c         ds->pending_buf == Z_NULL) {
pending_buf       932 lib/zlib/deflate.c     zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
pending_buf       934 lib/zlib/deflate.c     ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);
pending_buf       936 lib/zlib/deflate.c     ds->l_buf = ds->pending_buf + (1+sizeof(ush))*ds->lit_bufsize;
pending_buf        97 lib/zlib/deflate.h     Bytef *pending_buf;  /* output still pending */
pending_buf       268 lib/zlib/deflate.h #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}