HomeSort by: relevance | last modified time | path
    Searched refs:lit_bufsize (Results 1 - 4 of 4) sorted by relevancy

  /src/common/dist/zlib/
deflate.c 457 s->lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
479 * then n + 14 bits. Here n is lit_bufsize, which is 16384 by default, and
498 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, LIT_BUFS);
499 s->pending_buf_size = (ulg)s->lit_bufsize * 4;
509 s->d_buf = (ushf *)(s->pending_buf + (s->lit_bufsize << 1));
510 s->l_buf = s->pending_buf + (s->lit_bufsize << 2);
511 s->sym_end = s->lit_bufsize - 1;
513 s->sym_buf = s->pending_buf + s->lit_bufsize;
514 s->sym_end = (s->lit_bufsize - 1) * 3;
516 /* We avoid equality with lit_bufsize*3 because of wraparound at 64
    [all...]
deflate.h 235 uInt lit_bufsize; member in struct:internal_state
237 * limiting lit_bufsize to 64K:
242 * all blocks if lit_bufsize is not greater than 32K.)
trees.c 943 Assert(s->pending < 2 * (s->lit_bufsize + sx), "pendingBuf overflow");
945 Assert(s->pending < s->lit_bufsize + sx, "pendingBuf overflow");
1050 /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
1053 * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
  /src/sys/net/
zlib.c 489 uInt lit_bufsize; member in struct:deflate_state
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;
    [all...]

Completed in 17 milliseconds