/external/rust/crates/libz-sys/src/zlib/examples/ |
D | README.examples | 22 - illustrates the use of the Z_BLOCK flush parameter for inflate() 27 - illustrates the use of the Z_BLOCK flush parameter for inflate() 48 - illustrates the use of Z_BLOCK, inflatePrime(), and
|
D | zran.c | 195 ret = inflate(&strm, Z_BLOCK); /* return at end of block */ in build_index()
|
D | gzjoin.c | 329 ret = inflate(&strm, Z_BLOCK); in gzcopy()
|
D | gzappend.c | 310 ret = inflate(strm, Z_BLOCK); in gzscan()
|
/external/rust/crates/libz-sys/src/zlib-ng/arch/s390/ |
D | dfltcc_inflate.c | 71 if (flush == Z_BLOCK || flush == Z_TREES) { in PREFIX()
|
D | README.md | 48 * `inflate(Z_BLOCK)` and `inflate(Z_TREES)` 192 * Falling back to software when flush mode is `Z_BLOCK` or `Z_TREES`.
|
/external/rust/crates/libz-sys/src/zlib-ng/ |
D | deflate.c | 538 int flush = RANK(hook_flush) > RANK(Z_BLOCK) ? hook_flush : Z_BLOCK; in PREFIX() 701 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) in PREFIX() 942 } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */ in PREFIX()
|
D | zlib.h.in | 183 #define Z_BLOCK 5 macro 314 If flush is set to Z_BLOCK, a deflate block is completed and emitted, as 443 Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much 444 output as possible to the output buffer. Z_BLOCK requests that inflate() 451 The Z_BLOCK option assists in appending to or combining deflate streams. 465 The Z_TREES option behaves as Z_BLOCK does, but it also returns when the 492 when Z_BLOCK or Z_TREES is used, and when inflate() avoids the allocation of 631 options Z_BLOCK, Z_PARTIAL_FLUSH, Z_SYNC_FLUSH, or Z_FULL_FLUSH. The 721 compressed with the old level and strategy using deflate(strm, Z_BLOCK). 726 If a deflate(strm, Z_BLOCK) is performed by deflateParams(), and it does [all …]
|
D | zlib-ng.h.in | 174 #define Z_BLOCK 5 macro 305 If flush is set to Z_BLOCK, a deflate block is completed and emitted, as 437 Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much 438 output as possible to the output buffer. Z_BLOCK requests that inflate() 445 The Z_BLOCK option assists in appending to or combining deflate streams. 459 The Z_TREES option behaves as Z_BLOCK does, but it also returns when the 486 when Z_BLOCK or Z_TREES is used, and when inflate() avoids the allocation of 621 options Z_BLOCK, Z_PARTIAL_FLUSH, Z_SYNC_FLUSH, or Z_FULL_FLUSH. The 715 compressed with the old level and strategy using deflate(strm, Z_BLOCK). 720 If a deflate(strm, Z_BLOCK) is performed by deflateParams(), and it does [all …]
|
D | gzwrite.c | 480 if (strm->avail_in && gz_comp(state, Z_BLOCK) == -1) in PREFIX()
|
/external/rust/crates/libz-sys/src/zlib/contrib/pascal/ |
D | zlibpas.pas | 73 Z_BLOCK = 5;
|
/external/curl/lib/ |
D | content_encoding.c | 205 #ifdef Z_BLOCK in inflate_stream() 207 status = inflate(z, Z_BLOCK); in inflate_stream()
|
/external/rust/crates/flate2/src/ffi/ |
D | c.rs | 371 pub use libz::Z_BLOCK as MZ_BLOCK;
|
/external/libwebsockets/win32port/zlib/ |
D | zlib.h | 169 #define Z_BLOCK 5 macro
|
D | deflate.c | 449 err = deflate(strm, Z_BLOCK); 602 flush > Z_BLOCK || flush < 0) { 855 } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
|
/external/rust/crates/libz-sys/src/ |
D | lib.rs | 323 pub const Z_BLOCK: c_int = 5; constant
|
/external/python/cpython3/Modules/ |
D | zlibmodule.c | 1600 #ifdef Z_BLOCK // 1.2.0.5 for inflate, 1.2.3.4 for deflate in zlib_exec() 1601 ZLIB_ADD_INT_MACRO(Z_BLOCK); in zlib_exec()
|
/external/zstd/zlibWrapper/ |
D | README.md | 130 - deflate (with exception of Z_FULL_FLUSH, Z_BLOCK, and Z_TREES)
|
/external/python/cpython2/Modules/zlib/ |
D | zlib.h | 173 #define Z_BLOCK 5 macro
|
D | deflate.c | 592 int err = deflate(strm, Z_BLOCK); 770 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) { 1024 } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
|
/external/rust/crates/libz-sys/src/zlib/ |
D | zlib.h | 173 #define Z_BLOCK 5 macro
|
D | deflate.c | 592 int err = deflate(strm, Z_BLOCK); 770 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) { 1024 } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
|
/external/tflite-support/third_party/zlib/ |
D | deflate.c | 638 int err = deflate(strm, Z_BLOCK); 816 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) { 1070 } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
|
D | zlib.h | 216 #define Z_BLOCK 5 macro
|
/external/OpenCL-CTS/test_common/miniz/ |
D | miniz.h | 233 #define Z_BLOCK MZ_BLOCK macro
|