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

/darwin-on-arm/xnu/libkern/zlib/
H A Ddeflate.c259 /* We overlay pending_buf and d_buf+l_buf. This works since the average
323 s->pending_buf = (uchf *) overlay;
327 s->pending_buf == Z_NULL) {
334 s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
402 s->pending_out = s->pending_buf;
545 * pending_buf.
576 strm->state->pending_out = strm->state->pending_buf;
645 strm->adler = z_crc32(strm->adler, s->pending_buf,
688 strm->adler = z_crc32(strm->adler, s->pending_buf + beg,
699 strm->adler = z_crc32(strm->adler, s->pending_buf
[all...]
H A Ddeflate.h124 Bytef *pending_buf; /* output still pending */ member in struct:internal_state
125 ulg pending_buf_size; /* size of pending_buf */
293 * IN assertion: there is enough room in pending_buf.
295 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}

Completed in 26 milliseconds