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

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.c256 /* We overlay pending_buf and d_buf+l_buf. This works since the average
318 s->pending_buf = (uchf *) overlay;
322 s->pending_buf == Z_NULL) {
329 s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
397 s->pending_out = s->pending_buf;
540 * pending_buf.
571 strm->state->pending_out = strm->state->pending_buf;
640 strm->adler = crc32(strm->adler, s->pending_buf,
683 strm->adler = crc32(strm->adler, s->pending_buf + beg,
694 strm->adler = crc32(strm->adler, s->pending_buf
[all...]
H A Ddeflate.h121 Bytef *pending_buf; /* output still pending */ member in struct:internal_state
122 ulg pending_buf_size; /* size of pending_buf */
290 * IN assertion: there is enough room in pending_buf.
292 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}

Completed in 1747 milliseconds