Searched refs:wbits (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/uts/common/zmod/
H A Dinflate.h90 unsigned wbits; /* log base 2 of requested window size */ member in struct:inflate_state
H A Dinflate.c189 state->wbits = (unsigned)windowBits;
342 ZALLOC(strm, 1U << state->wbits,
349 state->wsize = 1U << state->wbits;
629 if (len > state->wbits) {
1372 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
1389 wsize = 1U << state->wbits;
/illumos-gate/usr/src/boot/lib/libz/
H A Dinflate.h92 unsigned wbits; /* log base 2 of requested window size */ member in struct:inflate_state
H A Dinflate.c169 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) {
176 state->wbits = (unsigned)windowBits;
392 ZALLOC(strm, 1U << state->wbits,
399 state->wsize = 1U << state->wbits;
673 if (state->wbits == 0)
674 state->wbits = len;
675 else if (len > state->wbits) {
1460 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
1477 wsize = 1U << state->wbits;
H A Dinfback.c64 state->wbits = windowBits;
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c3626 uInt wbits; /* log2(window size) (8..15, defaults to 15) */ member in struct:internal_state
3706 z->state->wbits = (uInt)w;
3764 if ((z->state->sub.method >> 4) + 8 > z->state->wbits)
3908 if (length >= ((uInt)1<<z->state->wbits))
3910 length = (1<<z->state->wbits)-1;
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c2763 uInt wbits; /* log2(window size) (8..15, defaults to 15) */ member in struct:internal_state
2830 z->state->wbits = (uInt)w;
2879 if ((z->state->sub.method >> 4) + 8 > z->state->wbits)

Completed in 1312 milliseconds