Home
last modified time | relevance | path

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

12

/external/zlib/src/contrib/pascal/
Dzlibpas.pas114 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 …]
/external/freetype/src/gzip/
Dzlib.h813 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/zlib/src/contrib/ada/
Dzlib-thin.adb43 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);
Dzlib-thin.ads259 windowBits : Int;
270 windowBits : Int;
284 windowBits : in Int;
291 windowBits : in Int;
298 function Inflate_Init (strm : Z_Streamp; windowBits : Int) return Int;
/external/zlib/src/
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;
Dzconf.h.cmakein243 /* Maximum value for windowBits in deflateInit2 and inflateInit2.
253 (1 << (windowBits+2)) + (1 << (memLevel+9))
254 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
260 The memory requirements for inflate are (in bytes) 1 << windowBits
261 that is, 32K for windowBits=15 (default value) plus a few kilobytes
Dzconf.h.in241 /* Maximum value for windowBits in deflateInit2 and inflateInit2.
251 (1 << (windowBits+2)) + (1 << (memLevel+9))
252 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
258 The memory requirements for inflate are (in bytes) 1 << windowBits
259 that is, 32K for windowBits=15 (default value) plus a few kilobytes
/external/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), \
/external/opencv3/3rdparty/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;
Dzconf.h.cmakein243 /* Maximum value for windowBits in deflateInit2 and inflateInit2.
253 (1 << (windowBits+2)) + (1 << (memLevel+9))
254 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
260 The memory requirements for inflate are (in bytes) 1 << windowBits
261 that is, 32K for windowBits=15 (default value) plus a few kilobytes
/external/libxml2/os400/
Dwrappers.c143 _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/pdfium/third_party/zlib_v128/
Dzlib.h972 int windowBits));
1707 int windowBits, int memLevel,
1710 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
1712 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
1720 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument
1721 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1723 #define inflateInit2(strm, windowBits) \ argument
1724 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \
1726 #define inflateBackInit(strm, windowBits, window) \ argument
1727 inflateBackInit_((strm), (windowBits), (window), \
Dinflate.c144 int windowBits) in inflateReset2() argument
154 if (windowBits < 0) { in inflateReset2()
156 windowBits = -windowBits; in inflateReset2()
159 wrap = (windowBits >> 4) + 1; in inflateReset2()
161 if (windowBits < 48) in inflateReset2()
162 windowBits &= 15; in inflateReset2()
167 if (windowBits && (windowBits < 8 || windowBits > 15)) in inflateReset2()
169 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) { in inflateReset2()
176 state->wbits = (unsigned)windowBits; in inflateReset2()
182 int windowBits, in inflateInit2_() argument
[all …]
Dinfback.c30 int windowBits, in inflateBackInit_() argument
41 windowBits < 8 || windowBits > 15) in inflateBackInit_()
64 state->wbits = windowBits; in inflateBackInit_()
65 state->wsize = 1U << windowBits; in inflateBackInit_()
Ddeflate.c217 int windowBits, in deflateInit2_() argument
260 if (windowBits < 0) { /* suppress zlib wrapper */ in deflateInit2_()
262 windowBits = -windowBits; in deflateInit2_()
265 else if (windowBits > 15) { in deflateInit2_()
267 windowBits -= 16; in deflateInit2_()
271 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || in deflateInit2_()
275 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */ in deflateInit2_()
283 s->w_bits = windowBits; in deflateInit2_()
/external/zlib/src/contrib/minizip/
Dzip.h227 int windowBits,
244 int windowBits,
270 int windowBits,
291 int windowBits,
Dzip.c1059 int windowBits,int memLevel, int strategy, in zipOpenNewFileInZip4_64() argument
1218 if (windowBits>0) in zipOpenNewFileInZip4_64()
1219 windowBits = -windowBits; in zipOpenNewFileInZip4_64()
1221 err = deflateInit2(&zi->ci.stream, level, Z_DEFLATED, windowBits, memLevel, strategy); in zipOpenNewFileInZip4_64()
1269 int windowBits,int memLevel, int strategy, in zipOpenNewFileInZip4() argument
1277 windowBits, memLevel, strategy, in zipOpenNewFileInZip4()
1285 int windowBits,int memLevel, int strategy, in zipOpenNewFileInZip3() argument
1292 windowBits, memLevel, strategy, in zipOpenNewFileInZip3()
1300 int windowBits,int memLevel, int strategy, in zipOpenNewFileInZip3_64() argument
1307 windowBits, memLevel, strategy, in zipOpenNewFileInZip3_64()
/external/chromium-trace/catapult/tracing/third_party/jszip/
Djszip.min.js12windowBits:15,memLevel:8,strategy:q,to:""},a||{});var b=this.options;b.raw&&b.windowBits>0?b.windo… property
13windowBits:0,to:""},a||{});var b=this.options;b.raw&&b.windowBits>=0&&b.windowBits<16&&(b.windowBi… property
/external/zlib/src/as400/
Dzlib.inc312 D windowBits 10I 0 value log2(window size)
352 D windowBits 10I 0 value log2(window size)
380 D windowBits 10I 0 value Log2(buffer size)
393 D windowBits 10I 0 value Log2(buffer size)

12