/third_party/zlib/examples/ |
H A D | zran.c | 19 // Illustrate the use of Z_BLOCK, inflatePrime(), and inflateSetDictionary() 190 ret = inflate(&strm, Z_BLOCK); in deflate_index_build() 444 ret = inflate(&strm, Z_BLOCK); // stop at end of header in deflate_index_extract()
|
H A D | gznorm.c | 20 // z_stream, z_off_t, crc32_combine, Z_NULL, Z_BLOCK, 148 int ret = inflate(&strm, Z_BLOCK); in gzip_normalize()
|
H A D | gzjoin.c | 51 This program was written to illustrate the use of the Z_BLOCK option of 329 ret = inflate(&strm, Z_BLOCK); in gzcopy()
|
H A D | gzappend.c | 52 This program was written to illustrate the use of the new Z_BLOCK option of 55 the start of the final deflate block. Also whether using Z_BLOCK or not, 310 ret = inflate(strm, Z_BLOCK); in gzscan()
|
/third_party/node/lib/ |
H A D | zlib.js | 83 Z_NO_FLUSH, Z_BLOCK, Z_PARTIAL_FLUSH, Z_SYNC_FLUSH, Z_FULL_FLUSH, Z_FINISH, 238 [ Z_NO_FLUSH, Z_BLOCK ], 359 // Z_NO_FLUSH (< Z_TREES) < Z_BLOCK < Z_PARTIAL_FLUSH < 363 const kFlushFlagList = [Z_NO_FLUSH, Z_BLOCK, Z_PARTIAL_FLUSH,
|
/third_party/zlib/contrib/pascal/ |
H A D | zlibpas.pas | 73 Z_BLOCK = 5;
|
/third_party/curl/lib/ |
H A D | content_encoding.c | 211 #ifdef Z_BLOCK in inflate_stream() 212 /* Z_BLOCK is only available in zlib ver. >= 1.2.0.5 */ in inflate_stream() 213 status = inflate(z, Z_BLOCK); in inflate_stream()
|
/third_party/node/deps/zlib/ |
H A D | zlib.h | 173 #define Z_BLOCK 5 macro 304 If flush is set to Z_BLOCK, a deflate block is completed and emitted, as 433 Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much 434 output as possible to the output buffer. Z_BLOCK requests that inflate() 441 The Z_BLOCK option assists in appending to or combining deflate streams. 455 The Z_TREES option behaves as Z_BLOCK does, but it also returns when the 482 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 716 compressed with the old level and strategy using deflate(strm, Z_BLOCK). 721 If a deflate(strm, Z_BLOCK) i [all...] |
H A D | deflate.c | 150 /* rank Z_BLOCK between Z_NO_FLUSH and Z_PARTIAL_FLUSH */ 810 int err = deflate(strm, Z_BLOCK); in deflateParams() 988 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) { in deflate() 1244 } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */ in deflate()
|
H A D | gzwrite.c | 585 if (strm->avail_in && gz_comp(state, Z_BLOCK) == -1) in gzsetparams()
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | zlib.h | 169 #define Z_BLOCK 5
macro 298 If flush is set to Z_BLOCK, a deflate block is completed and emitted, as
421 Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much
422 output as possible to the output buffer. Z_BLOCK requests that inflate()
429 The Z_BLOCK option assists in appending to or combining deflate streams.
443 The Z_TREES option behaves as Z_BLOCK does, but it also returns when the
465 because Z_BLOCK or Z_TREES is used.
902 as noted in the description for the Z_BLOCK flush parameter for inflate.
917 no gzip header information forthcoming. Note that Z_BLOCK or Z_TREES can be
|
H A D | deflate.c | 486 err = deflate(strm, Z_BLOCK);
639 flush > Z_BLOCK || flush < 0) {
892 } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
|
H A D | inflate.c | 811 if (flush == Z_BLOCK || flush == Z_TREES) goto inf_leave;
|
/third_party/zlib/ |
H A D | zlib.h | 173 #define Z_BLOCK 5 macro 304 If flush is set to Z_BLOCK, a deflate block is completed and emitted, as 434 Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much 435 output as possible to the output buffer. Z_BLOCK requests that inflate() 442 The Z_BLOCK option assists in appending to or combining deflate streams. 456 The Z_TREES option behaves as Z_BLOCK does, but it also returns when the 483 when Z_BLOCK or Z_TREES is used, and when inflate() avoids the allocation of 622 options Z_BLOCK, Z_PARTIAL_FLUSH, Z_SYNC_FLUSH, or Z_FULL_FLUSH. The 717 compressed with the old level and strategy using deflate(strm, Z_BLOCK). 722 If a deflate(strm, Z_BLOCK) i [all...] |
H A D | deflate.c | 132 /* rank Z_BLOCK between Z_NO_FLUSH and Z_PARTIAL_FLUSH */ 777 int err = deflate(strm, Z_BLOCK); in deflateParams() 958 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) { in deflate() 1214 } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */ in deflate()
|
H A D | gzwrite.c | 592 if (strm->avail_in && gz_comp(state, Z_BLOCK) == -1) in gzsetparams()
|
/third_party/node/src/ |
H A D | node_zlib.cc | 315 flush != Z_BLOCK) { in Write() 1318 NODE_DEFINE_CONSTANT(target, Z_BLOCK); in DefineZlibConstants()
|
/third_party/python/Modules/ |
H A D | zlibmodule.c | 1601 #ifdef Z_BLOCK // 1.2.0.5 for inflate, 1.2.3.4 for deflate in zlib_exec() 1602 ZLIB_ADD_INT_MACRO(Z_BLOCK); in zlib_exec()
|
/third_party/node/deps/v8/third_party/zlib/ |
H A D | deflate.c | 173 /* rank Z_BLOCK between Z_NO_FLUSH and Z_PARTIAL_FLUSH */ 644 int err = deflate(strm, Z_BLOCK); 822 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) { 1078 } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
|
H A D | zlib.h | 173 #define Z_BLOCK 5 macro 304 If flush is set to Z_BLOCK, a deflate block is completed and emitted, as 433 Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much 434 output as possible to the output buffer. Z_BLOCK requests that inflate() 441 The Z_BLOCK option assists in appending to or combining deflate streams. 455 The Z_TREES option behaves as Z_BLOCK does, but it also returns when the 482 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 716 compressed with the old level and strategy using deflate(strm, Z_BLOCK). 721 If a deflate(strm, Z_BLOCK) i [all...] |
H A D | gzwrite.c | 620 if (strm->avail_in && gz_comp(state, Z_BLOCK) == -1)
|
/third_party/skia/third_party/externals/zlib/ |
H A D | deflate.c | 173 /* rank Z_BLOCK between Z_NO_FLUSH and Z_PARTIAL_FLUSH */ 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 */
|
H A D | gzwrite.c | 617 if (strm->avail_in && gz_comp(state, Z_BLOCK) == -1)
|
H A D | zlib.h | 173 #define Z_BLOCK 5 macro 304 If flush is set to Z_BLOCK, a deflate block is completed and emitted, as 433 Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much 434 output as possible to the output buffer. Z_BLOCK requests that inflate() 441 The Z_BLOCK option assists in appending to or combining deflate streams. 455 The Z_TREES option behaves as Z_BLOCK does, but it also returns when the 482 when Z_BLOCK or Z_TREES is used, and when inflate() avoids the allocation of 622 options Z_BLOCK, Z_PARTIAL_FLUSH, Z_SYNC_FLUSH, or Z_FULL_FLUSH. The 717 level and strategy using deflate(strm, Z_BLOCK). There are three approaches 721 If a deflate(strm, Z_BLOCK) i [all...] |
/third_party/node/deps/v8/third_party/zlib/contrib/optimizations/ |
H A D | inflate.c | 863 if (flush == Z_BLOCK || flush == Z_TREES) goto inf_leave;
|