Searched refs:windowBits (Results 1 – 2 of 2) sorted by relevance
/optee_os/core/lib/zlib/ |
A D | zlib.h | 969 int windowBits)); 1770 int windowBits, int memLevel, 1773 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, 1787 # define z_inflateInit2(strm, windowBits) \ argument 1788 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \ 1790 # define z_inflateBackInit(strm, windowBits, window) \ argument 1791 inflateBackInit_((strm), (windowBits), (window), \ 1801 # define inflateInit2(strm, windowBits) \ argument 1802 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \ 1804 # define inflateBackInit(strm, windowBits, window) \ argument [all …]
|
A D | inflate.c | 158 int ZEXPORT inflateReset2(strm, windowBits) in inflateReset2() argument 160 int windowBits; 170 if (windowBits < 0) { 172 windowBits = -windowBits; 175 wrap = (windowBits >> 4) + 5; 177 if (windowBits < 48) 178 windowBits &= 15; 183 if (windowBits && (windowBits < 8 || windowBits > 15)) 192 state->wbits = (unsigned)windowBits; 198 int windowBits; [all …]
|
Completed in 7 milliseconds