Searched refs:windowBits (Results 1 – 2 of 2) sorted by relevance
| /optee_os/core/lib/zlib/ |
| H A D | zlib.h | 971 int windowBits)); 1787 int windowBits, int memLevel, 1790 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, 1792 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, 1801 # define z_deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument 1802 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ 1804 # define z_inflateInit2(strm, windowBits) \ argument 1805 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \ 1807 # define z_inflateBackInit(strm, windowBits, window) \ argument 1808 inflateBackInit_((strm), (windowBits), (window), \ [all …]
|
| H A D | inflate.c | 159 int ZEXPORT inflateReset2(strm, windowBits) in inflateReset2() argument 161 int windowBits; 171 if (windowBits < 0) { 173 windowBits = -windowBits; 176 wrap = (windowBits >> 4) + 5; 178 if (windowBits < 48) 179 windowBits &= 15; 184 if (windowBits && (windowBits < 8 || windowBits > 15)) 186 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) { 193 state->wbits = (unsigned)windowBits; [all …]
|