Home | History | Annotate | Download | only in net

Lines Matching defs:lit_bufsize

489     uInt  lit_bufsize;
491 * limiting lit_bufsize to 64K:
496 * all blocks if lit_bufsize is not greater than 32K.)
587 flush = (s->last_lit == s->lit_bufsize-1); \
597 flush = (s->last_lit == s->lit_bufsize-1); \
873 s->lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
875 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
877 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
886 s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
887 s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
1240 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
1256 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
1257 ds->l_buf = ds->pending_buf + (1+sizeof(ush))*ds->lit_bufsize;
3069 /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
3072 * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
3156 return (s->last_lit == s->lit_bufsize-1);
3157 /* We avoid equality with lit_bufsize because of wraparound at 64K
3205 Assert(s->pending < s->lit_bufsize + 2*lx, "pendingBuf overflow");