Home
last modified time | relevance | path

Searched refs:windowBits (Results 1 – 12 of 12) sorted by relevance

/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
Dzlib.h968 int windowBits));
1769 int windowBits, int memLevel,
1772 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
1774 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
1783 # define z_deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument
1784 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1786 # define z_inflateInit2(strm, windowBits) \ argument
1787 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \
1789 # define z_inflateBackInit(strm, windowBits, window) \ argument
1790 inflateBackInit_((strm), (windowBits), (window), \
[all …]
Dinflate.c157 int ZEXPORT inflateReset2(strm, windowBits) in inflateReset2() argument
159 int windowBits;
169 if (windowBits < 0) {
171 windowBits = -windowBits;
174 wrap = (windowBits >> 4) + 5;
176 if (windowBits < 48)
177 windowBits &= 15;
182 if (windowBits && (windowBits < 8 || windowBits > 15))
184 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) {
191 state->wbits = (unsigned)windowBits;
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dzlib.h1322 int windowBits, int memLevel,
1325 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
1327 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
1335 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument
1336 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1338 #define inflateInit2(strm, windowBits) \ argument
1339 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
1340 #define inflateBackInit(strm, windowBits, window) \ argument
1341 inflateBackInit_((strm), (windowBits), (window), \
Dinfback.c28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size) in inflateBackInit_() argument
30 int windowBits;
41 windowBits < 8 || windowBits > 15)
55 state->wbits = windowBits;
56 state->wsize = 1U << windowBits;
Dinflate.c144 int ZEXPORT inflateInit2_(strm, windowBits, version, stream_size) in inflateInit2_() argument
146 int windowBits;
167 if (windowBits < 0) {
169 windowBits = -windowBits;
172 state->wrap = (windowBits >> 4) + 1;
174 if (windowBits < 48) windowBits &= 15;
177 if (windowBits < 8 || windowBits > 15) {
182 state->wbits = (unsigned)windowBits;
Ddeflate.c216 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in deflateInit2_() argument
221 int windowBits;
255 if (windowBits < 0) { /* suppress zlib wrapper */
257 windowBits = -windowBits;
260 else if (windowBits > 15) {
262 windowBits -= 16;
266 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
270 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
278 s->w_bits = windowBits;
DChangeLog252 - Be more strict when checking inflateInit2's windowBits parameter
254 - Add gzip wrapper option to deflateInit2 using windowBits
385 - force windowBits > 8 to avoid a bug in the encoder for a window size
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dzlib.h903 int windowBits));
1638 int windowBits, int memLevel,
1641 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
1643 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
1651 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument
1652 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1654 #define inflateInit2(strm, windowBits) \ argument
1655 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \
1657 #define inflateBackInit(strm, windowBits, window) \ argument
1658 inflateBackInit_((strm), (windowBits), (window), \
Dinflate.c142 int ZEXPORT inflateReset2(strm, windowBits) in inflateReset2() argument
144 int windowBits;
154 if (windowBits < 0) {
156 windowBits = -windowBits;
159 wrap = (windowBits >> 4) + 1;
161 if (windowBits < 48)
162 windowBits &= 15;
167 if (windowBits && (windowBits < 8 || windowBits > 15))
169 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) {
176 state->wbits = (unsigned)windowBits;
[all …]
Dinfback.c28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size) in inflateBackInit_() argument
30 int windowBits;
41 windowBits < 8 || windowBits > 15)
64 state->wbits = windowBits;
65 state->wsize = 1U << windowBits;
Ddeflate.c213 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in deflateInit2_() argument
218 int windowBits;
261 if (windowBits < 0) { /* suppress zlib wrapper */
263 windowBits = -windowBits;
266 else if (windowBits > 15) {
268 windowBits -= 16;
272 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
276 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
284 s->w_bits = windowBits;
DChangeLog464 - Use zlib header window size if windowBits is 0 in inflateInit2()
869 - Be more strict when checking inflateInit2's windowBits parameter
871 - Add gzip wrapper option to deflateInit2 using windowBits
1002 - force windowBits > 8 to avoid a bug in the encoder for a window size