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

/forgerock/web-agents-v4/zlib/
H A Ddeflate.h219 uInt lit_bufsize; member in struct:internal_state
221 * limiting lit_bufsize to 64K:
226 * all blocks if lit_bufsize is not greater than 32K.)
328 flush = (s->last_lit == s->lit_bufsize-1); \
338 flush = (s->last_lit == s->lit_bufsize-1); \
H A Ddeflate.c299 s->lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
301 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
303 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
312 s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
313 s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
1043 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
1058 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
1059 ds->l_buf = ds->pending_buf + (1+sizeof(ush))*ds->lit_bufsize;
H A Dtrees.c1050 return (s->last_lit == s->lit_bufsize-1);
1051 /* We avoid equality with lit_bufsize because of wraparound at 64K
1099 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,

Completed in 82 milliseconds