/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | zlib.h | 1322 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), \
|
D | infback.c | 28 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;
|
D | inflate.c | 144 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;
|
D | deflate.c | 216 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;
|
D | ChangeLog | 252 - 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/ |
D | zlib.h | 903 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), \
|
D | inflate.c | 142 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 …]
|
D | infback.c | 28 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;
|
D | deflate.c | 213 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;
|
D | ChangeLog | 464 - 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
|