/third_party/zlib/contrib/pascal/ |
D | zlibpas.pas | 114 function deflateInit2(var strm: z_stream; level, method, windowBits, in deflateInit2() argument 126 function inflateInit2(var strm: z_stream; windowBits: Integer): Integer; in inflateInit2() 132 function inflateReset2(var strm: z_stream; windowBits: Integer): Integer; in inflateReset2() 137 windowBits: Integer; window: PChar): Integer; 165 level, method, windowBits, memLevel, strategy: Integer; 167 function inflateInit2_(var strm: z_stream; windowBits: Integer; in inflateInit2_() 170 windowBits: Integer; window: PChar; 232 function deflateInit2(var strm: z_stream; level, method, windowBits, memLevel, in deflateInit2() argument 235 Result := deflateInit2_(strm, level, method, windowBits, memLevel, strategy, 244 function inflateInit2(var strm: z_stream; windowBits: Integer): Integer; in inflateInit2() [all …]
|
/third_party/node/test/parallel/ |
D | test-zlib.js | 31 assert.throws(() => zlib.gzipSync(Buffer.alloc(0), { windowBits: 8 }), { property 57 let windowBits = [8, 9, 10, 11, 12, 13, 14, 15]; variable 68 windowBits = [15]; 164 zlib.createDeflateRaw({ windowBits: 8 }); property 178 node.pipe(zlib.createDeflateRaw({ windowBits: 9 })) property 179 .pipe(zlib.createInflateRaw({ windowBits: 8 })) property 195 windowBits.forEach(common.mustCall((windowBits) => { 202 const opts = { level, windowBits, memLevel, strategy }; property 229 }, windowBits.length));
|
D | test-zlib-zero-windowBits.js | 12 const inflate = zlib.createInflate({ windowBits: 0 }); property 17 const gunzip = zlib.createGunzip({ windowBits: 0 }); property 22 const unzip = zlib.createUnzip({ windowBits: 0 }); property 27 assert.throws(() => zlib.createGzip({ windowBits: 0 }), { property
|
D | test-zlib-deflate-constructors.js | 51 () => new zlib.Deflate({ windowBits: 'test' }), property 61 () => new zlib.Deflate({ windowBits: -Infinity }), property 71 () => new zlib.Deflate({ windowBits: Infinity }), property 81 () => new zlib.Deflate({ windowBits: 0 }), property
|
/third_party/node/deps/zlib/ |
D | zlib.h | 969 int windowBits); 1785 int windowBits, int memLevel, 1788 ZEXTERN int ZEXPORT inflateInit2_(z_streamp strm, int windowBits, 1790 ZEXTERN int ZEXPORT inflateBackInit_(z_streamp strm, int windowBits, 1799 # define z_deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument 1800 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ 1802 # define z_inflateInit2(strm, windowBits) \ argument 1803 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \ 1805 # define z_inflateBackInit(strm, windowBits, window) \ argument 1806 inflateBackInit_((strm), (windowBits), (window), \ [all …]
|
D | inflate.c | 141 int ZEXPORT inflateReset2(z_streamp strm, int windowBits) { in inflateReset2() argument 150 if (windowBits < 0) { in inflateReset2() 151 if (windowBits < -15) in inflateReset2() 154 windowBits = -windowBits; in inflateReset2() 157 wrap = (windowBits >> 4) + 5; in inflateReset2() 159 if (windowBits < 48) in inflateReset2() 160 windowBits &= 15; in inflateReset2() 165 if (windowBits && (windowBits < 8 || windowBits > 15)) in inflateReset2() 167 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) { in inflateReset2() 174 state->wbits = (unsigned)windowBits; in inflateReset2() [all …]
|
/third_party/skia/third_party/externals/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 …]
|
/third_party/zlib/ |
D | zlib.h | 970 int windowBits)); 1786 int windowBits, int memLevel, 1789 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, 1791 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, 1800 # define z_deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument 1801 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ 1803 # define z_inflateInit2(strm, windowBits) \ argument 1804 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \ 1806 # define z_inflateBackInit(strm, windowBits, window) \ argument 1807 inflateBackInit_((strm), (windowBits), (window), \ [all …]
|
D | inflate.c | 158 int ZEXPORT inflateReset2(strm, windowBits) in inflateReset2() argument 160 int windowBits; 170 if (windowBits < 0) { 171 if (windowBits < -15) 174 windowBits = -windowBits; 177 wrap = (windowBits >> 4) + 5; 179 if (windowBits < 48) 180 windowBits &= 15; 185 if (windowBits && (windowBits < 8 || windowBits > 15)) 187 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) { [all …]
|
/third_party/node/deps/v8/third_party/zlib/ |
D | zlib.h | 970 int windowBits)); 1771 int windowBits, int memLevel, 1774 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, 1776 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, 1785 # define z_deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument 1786 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ 1788 # define z_inflateInit2(strm, windowBits) \ argument 1789 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \ 1791 # define z_inflateBackInit(strm, windowBits, window) \ argument 1792 inflateBackInit_((strm), (windowBits), (window), \ [all …]
|
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 …]
|
/third_party/skia/third_party/externals/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))
|
/third_party/libwebsockets/win32port/zlib/ |
D | zlib.h | 848 int windowBits)); 1537 int windowBits, int memLevel, 1540 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, 1542 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, 1550 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument 1551 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ 1553 #define inflateInit2(strm, windowBits) \ argument 1554 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream)) 1555 #define inflateBackInit(strm, windowBits, window) \ argument 1556 inflateBackInit_((strm), (windowBits), (window), \
|
D | inflate.c | 130 int ZEXPORT inflateReset2(strm, windowBits) in inflateReset2() argument 132 int windowBits; 142 if (windowBits < 0) { 144 windowBits = -windowBits; 147 wrap = (windowBits >> 4) + 1; 149 if (windowBits < 48) 150 windowBits &= 15; 155 if (windowBits && (windowBits < 8 || windowBits > 15)) 157 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) { 164 state->wbits = (unsigned)windowBits; [all …]
|
/third_party/zlib/contrib/ada/ |
D | zlib-thin.adb | 43 windowBits : Int; 52 windowBits, 63 function Inflate_Init (strm : Z_Streamp; windowBits : Int) return Int is 65 return inflateInit2 (strm, windowBits, ZLIB_VERSION, Z_Stream_Size);
|
D | zlib-thin.ads | 259 windowBits : Int; 270 windowBits : Int; 284 windowBits : in Int; 291 windowBits : in Int; 298 function Inflate_Init (strm : Z_Streamp; windowBits : Int) return Int;
|
/third_party/skia/third_party/externals/zlib/contrib/minizip/ |
D | zip.h | 227 int windowBits, 244 int windowBits, 270 int windowBits, 291 int windowBits,
|
/third_party/node/deps/v8/third_party/zlib/contrib/minizip/ |
D | zip.h | 227 int windowBits, 244 int windowBits, 270 int windowBits, 291 int windowBits,
|
/third_party/skia/third_party/externals/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()
|
/third_party/zlib/contrib/minizip/ |
D | zip.h | 232 int windowBits, 249 int windowBits, 275 int windowBits, 296 int windowBits,
|
/third_party/skia/third_party/externals/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()
|
/third_party/node/deps/v8/third_party/zlib/contrib/optimizations/ |
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 …]
|
/third_party/skia/third_party/externals/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 …]
|
/third_party/node/lib/ |
D | zlib.js | 633 let windowBits = Z_DEFAULT_WINDOWBITS; 643 if ((opts.windowBits == null || opts.windowBits === 0) && 647 windowBits = 0; 651 windowBits = checkRangesOrGetDefault( 652 opts.windowBits, 'options.windowBits', 687 handle.init(windowBits, 765 if (opts && opts.windowBits === 8) opts.windowBits = 9;
|