Searched refs:windowBits (Results 1 – 3 of 3) sorted by relevance
/u-boot/include/u-boot/ |
A D | zlib.h | 529 int windowBits, int memLevel, 745 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, 749 #define inflateInit2(strm, windowBits) \ argument 750 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
|
/u-boot/lib/zlib/ |
A D | inflate.c | 33 int ZEXPORT inflateInit2_(z_streamp strm, int windowBits, const char *version, in inflateInit2_() argument 53 if (windowBits < 0) { in inflateInit2_() 55 windowBits = -windowBits; in inflateInit2_() 58 state->wrap = (windowBits >> 4) + 1; in inflateInit2_() 60 if (windowBits < 48) windowBits &= 15; in inflateInit2_() 63 if (windowBits < 8 || windowBits > 15) { in inflateInit2_() 68 state->wbits = (unsigned)windowBits; in inflateInit2_()
|
A D | deflate.c | 211 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in deflateInit2_() argument 216 int windowBits; 250 if (windowBits < 0) { /* suppress zlib wrapper */ 252 windowBits = -windowBits; 255 else if (windowBits > 15) { 257 windowBits -= 16; 261 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || 265 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */ 273 s->w_bits = windowBits;
|
Completed in 10 milliseconds