/external/python/cpython2/Modules/zlib/ |
D | zlib.h | 968 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 …]
|
D | inflate.c | 157 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 …]
|
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 = (uInt)windowBits; 65 state->wsize = 1U << windowBits;
|
D | deflate.c | 240 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in deflateInit2_() argument 245 int windowBits; 288 if (windowBits < 0) { /* suppress zlib wrapper */ 290 windowBits = -windowBits; 293 else if (windowBits > 15) { 295 windowBits -= 16; 299 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || 300 strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) { 303 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */ 312 s->w_bits = (uInt)windowBits;
|
/external/freetype/src/gzip/ |
D | zlib.h | 813 ZEXTERN(int) inflateInit2_ OF((z_streamp strm, int windowBits, 819 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument 820 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ 822 #define inflateInit2(strm, windowBits) \ argument 823 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
|
/external/v8/third_party/zlib/ |
D | zlib.h | 968 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 …]
|
D | inflate.c | 157 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 …]
|
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 = (uInt)windowBits; 65 state->wsize = 1U << windowBits;
|
D | deflate.c | 232 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in deflateInit2_() argument 237 int windowBits; 284 if (windowBits < 0) { /* suppress zlib wrapper */ 286 windowBits = -windowBits; 289 else if (windowBits > 15) { 291 windowBits -= 16; 295 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || 296 strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) { 299 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */ 308 s->w_bits = (uInt)windowBits;
|
/external/zlib/ |
D | zlib.h | 968 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 …]
|
D | inflate.c | 157 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 …]
|
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 = (uInt)windowBits; 65 state->wsize = 1U << windowBits;
|
D | deflate.c | 227 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in deflateInit2_() argument 232 int windowBits; 279 if (windowBits < 0) { /* suppress zlib wrapper */ 281 windowBits = -windowBits; 284 else if (windowBits > 15) { 286 windowBits -= 16; 290 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || 291 strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) { 294 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */ 303 s->w_bits = (uInt)windowBits;
|
/external/libxml2/os400/ |
D | wrappers.c | 143 _lx_inflateInit2_(z_streamp strm, int windowBits, in _lx_inflateInit2_() argument 150 r = inflateInit2_(strm, windowBits, in _lx_inflateInit2_() 157 _lx_deflateInit2_(z_streamp strm, int level, int method, int windowBits, in _lx_deflateInit2_() argument 164 r = deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in _lx_deflateInit2_()
|
/external/zlib/contrib/minizip/ |
D | zip.h | 227 int windowBits, 244 int windowBits, 270 int windowBits, 291 int windowBits,
|
/external/v8/third_party/zlib/contrib/minizip/ |
D | zip.h | 227 int windowBits, 244 int windowBits, 270 int windowBits, 291 int windowBits,
|
/external/v8/third_party/zlib/contrib/tests/fuzzers/ |
D | deflate_fuzzer.cc | 27 int windowBits = fdp.PickValueInArray({9, 10, 11, 12, 13, 14, 15}); in LLVMFuzzerTestOneInput() local 39 deflateInit2(&stream, level, Z_DEFLATED, windowBits, memLevel, strategy); in LLVMFuzzerTestOneInput() 58 ret = inflateInit2(&stream, windowBits); in LLVMFuzzerTestOneInput()
|
/external/brotli/csharp/org/brotli/dec/ |
D | State.cs | 145 int windowBits = DecodeWindowBits(state.br); in SetInput() 146 if (windowBits == 9) in SetInput() 151 state.maxRingBufferSize = 1 << windowBits; in SetInput()
|
/external/v8/third_party/zlib/contrib/optimizations/ |
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)) 185 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) { 192 state->wbits = (unsigned)windowBits; [all …]
|
/external/zlib/contrib/optimizations/ |
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)) 185 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) { 192 state->wbits = (unsigned)windowBits; [all …]
|
/external/u-boot/lib/zlib/ |
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_()
|
D | deflate.c | 211 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in deflateInit2_() argument 216 int windowBits; 250 if (windowBits < 0) { /* suppress zlib wrapper */ 252 windowBits = -windowBits; 255 else if (windowBits > 15) { 257 windowBits -= 16; 261 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || 265 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */ 273 s->w_bits = windowBits;
|
/external/u-boot/include/u-boot/ |
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))
|
/external/oss-fuzz/projects/zlib/ |
D | example_dict_fuzzer.c | 40 int windowBits = 8 + data[0] % 8; /* The windowBits parameter is the base in test_dict_deflate() local 61 err = deflateInit2(&c_stream, level, method, windowBits, memLevel, strategy); in test_dict_deflate()
|
/external/v8/third_party/zlib/patches/ |
D | 0003-uninitializedjump.patch | 5 @@ -318,6 +318,10 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
|