/external/zlib/contrib/pascal/ |
D | zlibpas.pas | 92 function deflateInit2(var strm: z_stream; level, method, windowBits, in deflateInit2() argument 101 function inflateInit2(var strm: z_stream; windowBits: Integer): Integer; in inflateInit2() 108 windowBits: Integer; window: PChar): Integer; 134 level, method, windowBits, memLevel, strategy: Integer; 136 function inflateInit2_(var strm: z_stream; windowBits: Integer; in inflateInit2_() 139 windowBits: Integer; window: PChar; 192 function deflateInit2(var strm: z_stream; level, method, windowBits, memLevel, in deflateInit2() argument 195 Result := deflateInit2_(strm, level, method, windowBits, memLevel, strategy, 204 function inflateInit2(var strm: z_stream; windowBits: Integer): Integer; in inflateInit2() 206 Result := inflateInit2_(strm, windowBits, ZLIB_VERSION, sizeof(z_stream)); [all …]
|
/external/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;
|
D | zlib.adb | 232 windowBits => Win_Bits,
|
/external/qemu/distrib/zlib-1.2.3/ |
D | zlib.h | 1322 int windowBits, int memLevel, 1325 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, 1327 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, 1335 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument 1336 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ 1338 #define inflateInit2(strm, windowBits) \ argument 1339 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream)) 1340 #define inflateBackInit(strm, windowBits, window) \ argument 1341 inflateBackInit_((strm), (windowBits), (window), \
|
D | infback.c | 28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size) in inflateBackInit_() argument 30 int windowBits; 41 windowBits < 8 || windowBits > 15) 55 state->wbits = windowBits; 56 state->wsize = 1U << windowBits;
|
D | inflate.c | 144 int ZEXPORT inflateInit2_(strm, windowBits, version, stream_size) in inflateInit2_() argument 146 int windowBits; 167 if (windowBits < 0) { 169 windowBits = -windowBits; 172 state->wrap = (windowBits >> 4) + 1; 174 if (windowBits < 48) windowBits &= 15; 177 if (windowBits < 8 || windowBits > 15) { 182 state->wbits = (unsigned)windowBits;
|
D | deflate.c | 216 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in deflateInit2_() argument 221 int windowBits; 255 if (windowBits < 0) { /* suppress zlib wrapper */ 257 windowBits = -windowBits; 260 else if (windowBits > 15) { 262 windowBits -= 16; 266 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || 270 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */ 278 s->w_bits = windowBits;
|
/external/chromium/sdch/open-vcdiff/src/ |
D | zlib.h | 1338 int windowBits, int memLevel, 1341 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, 1343 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, 1351 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument 1352 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ 1354 #define inflateInit2(strm, windowBits) \ argument 1355 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream)) 1356 #define inflateBackInit(strm, windowBits, window) \ argument 1357 inflateBackInit_((strm), (windowBits), (window), \
|
/external/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 …]
|
D | infback.c | 28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size) in inflateBackInit_() argument 30 int windowBits; 41 windowBits < 8 || windowBits > 15) 55 state->wbits = windowBits; 56 state->wsize = 1U << windowBits;
|
D | deflate.c | 210 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;
|
D | zconf.h.in | 214 /* Maximum value for windowBits in deflateInit2 and inflateInit2. 224 (1 << (windowBits+2)) + (1 << (memLevel+9)) 225 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values) 231 The memory requirements for inflate are (in bytes) 1 << windowBits 232 that is, 32K for windowBits=15 (default value) plus a few kilobytes
|
D | zconf.h.cmakein | 216 /* Maximum value for windowBits in deflateInit2 and inflateInit2. 226 (1 << (windowBits+2)) + (1 << (memLevel+9)) 227 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values) 233 The memory requirements for inflate are (in bytes) 1 << windowBits 234 that is, 32K for windowBits=15 (default value) plus a few kilobytes
|
D | ChangeLog | 200 - Use zlib header window size if windowBits is 0 in inflateInit2() 605 - Be more strict when checking inflateInit2's windowBits parameter 607 - Add gzip wrapper option to deflateInit2 using windowBits 738 - force windowBits > 8 to avoid a bug in the encoder for a window size
|
/external/zlib/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 1217 if (windowBits>0) in zipOpenNewFileInZip4_64() 1218 windowBits = -windowBits; in zipOpenNewFileInZip4_64() 1220 err = deflateInit2(&zi->ci.stream, level, Z_DEFLATED, windowBits, memLevel, strategy); in zipOpenNewFileInZip4_64() 1268 int windowBits,int memLevel, int strategy, in zipOpenNewFileInZip4() argument 1276 windowBits, memLevel, strategy, in zipOpenNewFileInZip4() 1284 int windowBits,int memLevel, int strategy, in zipOpenNewFileInZip3() argument 1291 windowBits, memLevel, strategy, in zipOpenNewFileInZip3() 1299 int windowBits,int memLevel, int strategy, in zipOpenNewFileInZip3_64() argument 1306 windowBits, memLevel, strategy, in zipOpenNewFileInZip3_64()
|
/external/libpng/contrib/pngminim/encoder/ |
D | dummy_inflate.c | 22 int ZEXPORT inflateInit2_(strm, windowBits, version, stream_size) in inflateInit2_() argument 24 int windowBits;
|
/external/kernel-headers/original/linux/ |
D | zlib.h | 694 int windowBits, int memLevel, 696 extern int zlib_inflateInit2(z_streamp strm, int windowBits);
|
/external/zlib/as400/ |
D | zlib.inc | 228 D windowBits 10I 0 value log2(window size) 263 D windowBits 10I 0 value log2(window size) 286 D windowBits 10I 0 value Log2(buffer size)
|
/external/zlib/old/as400/ |
D | zlib.inc | 228 D windowBits 10I 0 value log2(window size) 263 D windowBits 10I 0 value log2(window size) 286 D windowBits 10I 0 value Log2(buffer size)
|