Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zlib/
H A Dinflate.c162 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) { in inflateReset2()
169 state->wbits = (unsigned)windowBits; in inflateReset2()
261 ZALLOC(strm, 1U << state->wbits, in updatewindow()
268 state->wsize = 1U << state->wbits; in updatewindow()
514 if (state->wbits == 0) in inflate()
515 state->wbits = 15; in inflate()
540 if (state->wbits == 0) in inflate()
541 state->wbits = len; in inflate()
542 if (len > 15 || len > state->wbits) { in inflate()
1346 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char)); in inflateCopy()
H A Dinflate.h96 unsigned wbits; /* log base 2 of requested window size */ member
H A Dinfback.c57 state->wbits = (uInt)windowBits; in inflateBackInit_()
/freebsd/contrib/libfido2/tools/
H A Dlargeblob.c308 try_decompress(const struct blob *in, uint64_t origsiz, int wbits) in try_decompress() argument
323 if (inflateInit2(&zs, wbits) != Z_OK) in try_decompress()