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

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.h240 uInt lit_bufsize; member in struct:internal_state
242 * limiting lit_bufsize to 64K:
247 * all blocks if lit_bufsize is not greater than 32K.)
337 flush = (s->last_lit == s->lit_bufsize-1); \
347 flush = (s->last_lit == s->lit_bufsize-1); \
H A Ddeflate.c315 s->lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
317 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
319 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
328 s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
329 s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
947 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
962 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
963 ds->l_buf = ds->pending_buf + (1+sizeof(ush))*ds->lit_bufsize;
H A Dtrees.c1086 return (s->last_lit == s->lit_bufsize-1);
1087 /* We avoid equality with lit_bufsize because of wraparound at 64K
1135 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,

Completed in 52 milliseconds