Searched refs:lit_bufsize (Results 1 - 3 of 3) sorted by relevance

/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Ddeflate.h202 uInt lit_bufsize; member in struct:internal_state
204 * limiting lit_bufsize to 64K:
209 * all blocks if lit_bufsize is not greater than 32K.)
299 flush = (s->last_lit == s->lit_bufsize-1); \
309 flush = (s->last_lit == s->lit_bufsize-1); \
H A Ddeflate.c267 s->lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
269 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
271 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
279 s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
280 s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
628 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
643 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
644 ds->l_buf = ds->pending_buf + (1+sizeof(ush))*ds->lit_bufsize;
H A Dtrees.c1061 return (s->last_lit == s->lit_bufsize-1);
1062 /* We avoid equality with lit_bufsize because of wraparound at 64K
1110 Assert(s->pending < s->lit_bufsize + 2*lx, "pendingBuf overflow");

Completed in 16 milliseconds