Searched refs:windowBits (Results 1 – 3 of 3) sorted by relevance
| /rk3399_rockchip-uboot/lib/zlib/ |
| H 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_()
|
| H A D | deflate.c | 210 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in deflateInit2_() argument 215 int windowBits; 249 if (windowBits < 0) { /* suppress zlib wrapper */ 251 windowBits = -windowBits; 254 else if (windowBits > 15) { 256 windowBits -= 16; 260 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || 264 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */ 272 s->w_bits = windowBits;
|
| /rk3399_rockchip-uboot/include/u-boot/ |
| H A D | zlib.h | 523 int windowBits, int memLevel, 713 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, 717 #define inflateInit2(strm, windowBits) \ argument 718 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
|