Home
last modified time | relevance | path

Searched refs:windowBits (Results 1 - 25 of 40) sorted by relevance

12

/third_party/node/deps/zlib/
H A Dzlib.h541 int windowBits,
551 The windowBits parameter is the base two logarithm of the window size
557 For the current implementation of deflate(), a windowBits value of 8 (a
565 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
569 windowBits can also be greater than 15 for optional gzip encoding. Add
570 16 to windowBits to write a simple gzip header and trailer around the
585 as a function of windowBits and memLevel.
834 int windowBits);
840 The windowBits paramete
[all...]
H A Dinfback.c22 windowBits is in the range 8..15, and window is a user-supplied
23 window and output buffer that is 2**windowBits bytes.
25 int ZEXPORT inflateBackInit_(z_streamp strm, int windowBits, in inflateBackInit_() argument
34 windowBits < 8 || windowBits > 15) in inflateBackInit_()
57 state->wbits = (uInt)windowBits; in inflateBackInit_()
58 state->wsize = 1U << windowBits; in inflateBackInit_()
H A Dinflate.c141 int ZEXPORT inflateReset2(z_streamp strm, int windowBits) { in inflateReset2() argument
149 /* extract wrap request from windowBits parameter */ in inflateReset2()
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 in inflateReset2()
178 inflateInit2_(z_streamp strm, int windowBits, const char *version, int stream_size) inflateInit2_() argument
[all...]
/third_party/zlib/
H A Dzlib.h542 int windowBits,
552 The windowBits parameter is the base two logarithm of the window size
558 For the current implementation of deflate(), a windowBits value of 8 (a
566 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
570 windowBits can also be greater than 15 for optional gzip encoding. Add
571 16 to windowBits to write a simple gzip header and trailer around the
586 as a function of windowBits and memLevel.
835 int windowBits);
841 The windowBits paramete
[all...]
H A Dinfback.c22 windowBits is in the range 8..15, and window is a user-supplied
23 window and output buffer that is 2**windowBits bytes.
25 int ZEXPORT inflateBackInit_(z_streamp strm, int windowBits, in inflateBackInit_() argument
34 windowBits < 8 || windowBits > 15) in inflateBackInit_()
57 state->wbits = (uInt)windowBits; in inflateBackInit_()
58 state->wsize = 1U << windowBits; in inflateBackInit_()
/third_party/skia/third_party/externals/freetype/src/gzip/
H A Dzlib.h399 int windowBits,
410 The windowBits parameter is the base two logarithm of the window size
420 usage as a function of windowBits and memLevel.
518 int windowBits));
524 The windowBits parameter is the base two logarithm of the maximum window
813 ZEXTERN(int) inflateInit2_ OF((z_streamp strm, int windowBits,
819 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
820 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
822 #define inflateInit2(strm, windowBits) \
823 inflateInit2_((strm), (windowBits), ZLIB_VERSIO
[all...]
/third_party/node/deps/v8/third_party/zlib/
H A Dzlib.h541 int windowBits,
551 The windowBits parameter is the base two logarithm of the window size
557 For the current implementation of deflate(), a windowBits value of 8 (a
565 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
569 windowBits can also be greater than 15 for optional gzip encoding. Add
570 16 to windowBits to write a simple gzip header and trailer around the
585 as a function of windowBits and memLevel.
833 int windowBits));
839 The windowBits paramete
[all...]
H A Dinfback.c25 windowBits is in the range 8..15, and window is a user-supplied
26 window and output buffer that is 2**windowBits bytes.
28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size) in inflateBackInit_()
30 int windowBits;
41 windowBits < 8 || windowBits > 15)
64 state->wbits = (uInt)windowBits;
65 state->wsize = 1U << windowBits;
H A Dinflate.c158 int ZEXPORT inflateReset2(strm, windowBits) in inflateReset2()
160 int windowBits;
169 /* extract wrap request from windowBits parameter */
170 if (windowBits < 0) {
172 windowBits = -windowBits;
175 wrap = (windowBits >> 4) + 5;
177 if (windowBits < 48)
178 windowBits &= 15;
183 if (windowBits
[all...]
/third_party/skia/third_party/externals/zlib/
H A Dzlib.h541 int windowBits,
552 The windowBits parameter is the base two logarithm of the window size
558 For the current implementation of deflate(), a windowBits value of 8 (a
566 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
570 windowBits can also be greater than 15 for optional gzip encoding. Add
571 16 to windowBits to write a simple gzip header and trailer around the
586 as a function of windowBits and memLevel.
833 int windowBits));
839 The windowBits paramete
[all...]
H A Dinfback.c25 windowBits is in the range 8..15, and window is a user-supplied
26 window and output buffer that is 2**windowBits bytes.
28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size) in inflateBackInit_()
30 int windowBits;
41 windowBits < 8 || windowBits > 15)
64 state->wbits = (uInt)windowBits;
65 state->wsize = 1U << windowBits;
H A Dinflate.c157 int ZEXPORT inflateReset2(strm, windowBits) in inflateReset2()
159 int windowBits;
168 /* extract wrap request from windowBits parameter */
169 if (windowBits < 0) {
171 windowBits = -windowBits;
174 wrap = (windowBits >> 4) + 5;
176 if (windowBits < 48)
177 windowBits &= 15;
182 if (windowBits
[all...]
/third_party/libwebsockets/win32port/zlib/
H A Dzlib.h521 int windowBits,
532 The windowBits parameter is the base two logarithm of the window size
538 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
542 windowBits can also be greater than 15 for optional gzip encoding. Add
543 16 to windowBits to write a simple gzip header and trailer around the
553 as a function of windowBits and memLevel.
736 int windowBits));
742 The windowBits parameter is the base two logarithm of the maximum window
745 instead. windowBits mus
[all...]
H A Dinflate.c130 int ZEXPORT inflateReset2(strm, windowBits) in inflateReset2()
132 int windowBits;
141 /* extract wrap request from windowBits parameter */
142 if (windowBits < 0) {
144 windowBits = -windowBits;
147 wrap = (windowBits >> 4) + 1;
149 if (windowBits < 48)
150 windowBits &= 15;
155 if (windowBits
[all...]
H A Dinfback.c25 windowBits is in the range 8..15, and window is a user-supplied
26 window and output buffer that is 2**windowBits bytes.
28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size) in inflateBackInit_()
30 int windowBits;
41 windowBits < 8 || windowBits > 15)
55 state->wbits = windowBits;
56 state->wsize = 1U << windowBits;
/third_party/node/deps/v8/third_party/zlib/contrib/minizip/
H A Dzip.h227 int windowBits,
244 int windowBits,
254 windowBits,memLevel,,strategy : see parameter strategy in deflateInit2
270 int windowBits,
291 int windowBits,
/third_party/skia/third_party/externals/zlib/contrib/minizip/
H A Dzip.h227 int windowBits,
244 int windowBits,
254 windowBits,memLevel,,strategy : see parameter strategy in deflateInit2
270 int windowBits,
291 int windowBits,
/third_party/zlib/contrib/minizip/
H A Dzip.h232 int windowBits,
249 int windowBits,
258 windowBits,memLevel,,strategy : see parameter strategy in deflateInit2
274 int windowBits,
294 int windowBits,
/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/
H A DState.cs145 int windowBits = DecodeWindowBits(state.br); in SetInput()
146 if (windowBits == 9) in SetInput()
149 throw new Org.Brotli.Dec.BrotliRuntimeException("Invalid 'windowBits' code"); in SetInput()
151 state.maxRingBufferSize = 1 << windowBits; in SetInput()
/third_party/skia/third_party/externals/zlib/contrib/tests/fuzzers/
H A Ddeflate_fuzzer.cc27 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/node/lib/
H A Dzlib.js650 let windowBits = Z_DEFAULT_WINDOWBITS;
657 // windowBits is special. On the compression side, 0 is an invalid value.
658 // But on the decompression side, a value of 0 for windowBits tells zlib
660 if ((opts.windowBits == null || opts.windowBits === 0) &&
664 windowBits = 0;
666 // `{ windowBits: 8 }` is valid for deflate but not gzip.
668 windowBits = checkRangesOrGetDefault(
669 opts.windowBits, 'options.windowBits',
[all...]
/third_party/zlib/contrib/pascal/
H A Dzlibpas.pas114 function deflateInit2(var strm: z_stream; level, method, windowBits, in deflateInit2()
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;
170 windowBits: Integer; window: PChar;
232 function deflateInit2(var strm: z_stream; level, method, windowBits, memLevel,
235 Result := deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
244 function inflateInit2(var strm: z_stream; windowBits
[all...]
/third_party/node/deps/v8/third_party/zlib/contrib/optimizations/
H A Dinflate.c159 int ZEXPORT inflateReset2(strm, windowBits) in inflateReset2()
161 int windowBits;
170 /* extract wrap request from windowBits parameter */
171 if (windowBits < 0) {
173 windowBits = -windowBits;
176 wrap = (windowBits >> 4) + 5;
178 if (windowBits < 48)
179 windowBits &= 15;
184 if (windowBits
[all...]
/third_party/skia/third_party/externals/zlib/contrib/optimizations/
H A Dinflate.c158 int ZEXPORT inflateReset2(strm, windowBits) in inflateReset2()
160 int windowBits;
169 /* extract wrap request from windowBits parameter */
170 if (windowBits < 0) {
172 windowBits = -windowBits;
175 wrap = (windowBits >> 4) + 5;
177 if (windowBits < 48)
178 windowBits &= 15;
183 if (windowBits
[all...]
/third_party/node/deps/zlib/contrib/optimizations/
H A Dinflate.c142 int ZEXPORT inflateReset2(z_streamp strm, int windowBits) { in inflateReset2() argument
150 /* extract wrap request from windowBits parameter */ in inflateReset2()
151 if (windowBits < 0) { in inflateReset2()
152 if (windowBits < -15) in inflateReset2()
155 windowBits = -windowBits; in inflateReset2()
158 wrap = (windowBits >> 4) + 5; in inflateReset2()
160 if (windowBits < 48) in inflateReset2()
161 windowBits &= 15; in inflateReset2()
166 if (windowBits in inflateReset2()
179 inflateInit2_(z_streamp strm, int windowBits, const char *version, int stream_size) inflateInit2_() argument
[all...]

Completed in 21 milliseconds

12