Home
last modified time | relevance | path

Searched refs:wbits (Results 1 – 4 of 4) sorted by relevance

/titanic_50/usr/src/uts/common/zmod/
H A Dinflate.h90 unsigned wbits; /* log base 2 of requested window size */ member
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;
/titanic_50/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c3626 uInt wbits; /* log2(window size) (8..15, defaults to 15) */ member
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;
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c2763 uInt wbits; /* log2(window size) (8..15, defaults to 15) */ member
2830 z->state->wbits = (uInt)w;
2879 if ((z->state->sub.method >> 4) + 8 > z->state->wbits)