/external/zlib/src/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 …]
|
/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/zlib/src/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;
|
/external/zlib/src/ |
D | zlib.h | 903 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), \
|
D | inflate.c | 142 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 …]
|
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 = windowBits; 65 state->wsize = 1U << windowBits;
|
D | deflate.c | 213 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;
|
D | zconf.h.cmakein | 243 /* 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
|
D | zconf.h.in | 241 /* 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/ |
D | zlib.h | 903 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/ |
D | zlib.h | 903 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), \
|
D | inflate.c | 142 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 …]
|
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 = windowBits; 65 state->wsize = 1U << windowBits;
|
D | deflate.c | 213 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;
|
D | zconf.h.cmakein | 243 /* 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/ |
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/pdfium/third_party/zlib_v128/ |
D | zlib.h | 972 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), \
|
D | inflate.c | 144 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 …]
|
D | infback.c | 30 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_()
|
D | deflate.c | 217 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/ |
D | zip.h | 227 int windowBits, 244 int windowBits, 270 int windowBits, 291 int windowBits,
|
D | zip.c | 1059 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/ |
D | jszip.min.js | 12 …windowBits:15,memLevel:8,strategy:q,to:""},a||{});var b=this.options;b.raw&&b.windowBits>0?b.windo… property 13 …windowBits:0,to:""},a||{});var b=this.options;b.raw&&b.windowBits>=0&&b.windowBits<16&&(b.windowBi… property
|
/external/zlib/src/as400/ |
D | zlib.inc | 312 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)
|