Home
last modified time | relevance | path

Searched refs:windowBits (Results 1 – 25 of 34) 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/python/cpython2/Modules/zlib/
Dzlib.h968 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 …]
Dinflate.c157 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 …]
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 = (uInt)windowBits;
65 state->wsize = 1U << windowBits;
Ddeflate.c240 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;
Dzconf.h.in264 /* Maximum value for windowBits in deflateInit2 and inflateInit2.
274 (1 << (windowBits+2)) + (1 << (memLevel+9))
275 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
281 The memory requirements for inflate are (in bytes) 1 << windowBits
282 that is, 32K for windowBits=15 (default value) plus about 7 kilobytes
Dzconf.h.cmakein266 /* Maximum value for windowBits in deflateInit2 and inflateInit2.
276 (1 << (windowBits+2)) + (1 << (memLevel+9))
277 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
283 The memory requirements for inflate are (in bytes) 1 << windowBits
284 that is, 32K for windowBits=15 (default value) plus about 7 kilobytes
/external/zlib/src/
Dzlib.h969 int windowBits));
1770 int windowBits, int memLevel,
1773 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
1775 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
1784 # define z_deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument
1785 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1787 # define z_inflateInit2(strm, windowBits) \ argument
1788 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \
1790 # define z_inflateBackInit(strm, windowBits, window) \ argument
1791 inflateBackInit_((strm), (windowBits), (window), \
[all …]
Dinflate.c157 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 …]
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 = (uInt)windowBits;
65 state->wsize = 1U << windowBits;
Ddeflate.c240 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;
Dzconf.h.cmakein266 /* Maximum value for windowBits in deflateInit2 and inflateInit2.
276 (1 << (windowBits+2)) + (1 << (memLevel+9))
277 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
283 The memory requirements for inflate are (in bytes) 1 << windowBits
284 that is, 32K for windowBits=15 (default value) plus about 7 kilobytes
Dzconf.h.in264 /* Maximum value for windowBits in deflateInit2 and inflateInit2.
274 (1 << (windowBits+2)) + (1 << (memLevel+9))
275 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
281 The memory requirements for inflate are (in bytes) 1 << windowBits
282 that is, 32K for windowBits=15 (default value) plus about 7 kilobytes
/external/zlib/
Dzlib.h969 int windowBits));
1770 int windowBits, int memLevel,
1773 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
1775 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
1784 # define z_deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument
1785 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1787 # define z_inflateInit2(strm, windowBits) \ argument
1788 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \
1790 # define z_inflateBackInit(strm, windowBits, window) \ argument
1791 inflateBackInit_((strm), (windowBits), (window), \
[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/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/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/brotli/csharp/org/brotli/dec/
DState.cs145 int windowBits = DecodeWindowBits(state.br); in SetInput()
146 if (windowBits == 9) in SetInput()
151 state.maxRingBufferSize = 1 << windowBits; in SetInput()
/external/u-boot/lib/zlib/
Dinflate.c33 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_()
Ddeflate.c210 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in deflateInit2_() argument
215 int windowBits;
249 if (windowBits < 0) { /* suppress zlib wrapper */
251 windowBits = -windowBits;
254 else if (windowBits > 15) {
256 windowBits -= 16;
260 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
264 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
272 s->w_bits = windowBits;
/external/u-boot/include/u-boot/
Dzlib.h523 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/pdfium/third_party/libpng16/
Dpngwutil.c330 int windowBits = png_ptr->zlib_window_bits; in png_deflate_claim() local
352 windowBits = png_ptr->zlib_text_window_bits; in png_deflate_claim()
379 unsigned int half_window_size = 1U << (windowBits-1); in png_deflate_claim()
384 --windowBits; in png_deflate_claim()
392 png_ptr->zlib_set_window_bits != windowBits || in png_deflate_claim()
418 ret = deflateInit2(&png_ptr->zstream, level, method, windowBits, in png_deflate_claim()

12