pending_buf       294 tools/packfi2/deflate.c     s->pending_buf = (uchf *) overlay;
pending_buf       298 tools/packfi2/deflate.c         s->pending_buf == Z_NULL) {
pending_buf       305 tools/packfi2/deflate.c     s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
pending_buf       373 tools/packfi2/deflate.c     s->pending_out = s->pending_buf;
pending_buf       547 tools/packfi2/deflate.c         strm->state->pending_out = strm->state->pending_buf;
pending_buf       616 tools/packfi2/deflate.c                     strm->adler = crc32(strm->adler, s->pending_buf,
pending_buf       659 tools/packfi2/deflate.c                         strm->adler = crc32(strm->adler, s->pending_buf + beg,
pending_buf       670 tools/packfi2/deflate.c                 strm->adler = crc32(strm->adler, s->pending_buf + beg,
pending_buf       688 tools/packfi2/deflate.c                         strm->adler = crc32(strm->adler, s->pending_buf + beg,
pending_buf       701 tools/packfi2/deflate.c                 strm->adler = crc32(strm->adler, s->pending_buf + beg,
pending_buf       719 tools/packfi2/deflate.c                         strm->adler = crc32(strm->adler, s->pending_buf + beg,
pending_buf       732 tools/packfi2/deflate.c                 strm->adler = crc32(strm->adler, s->pending_buf + beg,
pending_buf       878 tools/packfi2/deflate.c     TRY_FREE(strm, strm->state->pending_buf);
pending_buf       924 tools/packfi2/deflate.c     ds->pending_buf = (uchf *) overlay;
pending_buf       927 tools/packfi2/deflate.c         ds->pending_buf == Z_NULL) {
pending_buf       935 tools/packfi2/deflate.c     zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
pending_buf       937 tools/packfi2/deflate.c     ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);
pending_buf       939 tools/packfi2/deflate.c     ds->l_buf = ds->pending_buf + (1+sizeof(ush))*ds->lit_bufsize;
pending_buf        97 tools/packfi2/deflate.h     Bytef *pending_buf;  /* output still pending */
pending_buf       268 tools/packfi2/deflate.h #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}