/third_party/skia/third_party/externals/zlib/contrib/tests/ |
D | utils_unittest.cc | 115 ret = deflate(&comp_strm, Z_FINISH); in TEST() 131 ret = inflate(&decomp_strm, Z_FINISH); in TEST() 194 ret = deflate(&stream, Z_FINISH); in TEST() 206 ret = inflate(&stream, Z_FINISH); in TEST() 263 ret = deflate(&stream, Z_FINISH); in TEST() 275 ret = inflate(&stream, Z_FINISH); in TEST() 402 ret = deflate(&stream, Z_FINISH); in TEST() 414 ret = inflate(&stream, Z_FINISH); in TEST() 518 ret = deflate(&stream, Z_FINISH); in TEST()
|
/third_party/node/test/parallel/ |
D | test-zlib-sync-no-event.js | 12 const zipped = zipper._processChunk(buffer, zlib.constants.Z_FINISH); 17 const unzipped = unzipper._processChunk(zipped, zlib.constants.Z_FINISH);
|
D | test-zlib-brotli.js | 78 zlib.brotliCompressSync('', { flush: zlib.constants.Z_FINISH }); 87 zlib.brotliCompressSync('', { finishFlush: zlib.constants.Z_FINISH });
|
/third_party/zlib/contrib/pascal/ |
D | example.pas | 214 err := deflate(c_stream, Z_FINISH); 311 err := deflate(c_stream, Z_FINISH); 392 err := deflate(c_stream, Z_FINISH); 434 err := inflate(d_stream, Z_FINISH); 471 err := deflate(c_stream, Z_FINISH);
|
/third_party/skia/third_party/externals/zlib/contrib/tests/fuzzers/ |
D | streaming_inflate_fuzzer.cc | 38 ret = deflate(&comp_strm, Z_FINISH); in LLVMFuzzerTestOneInput() 56 ret = inflate(&decomp_strm, Z_FINISH); in LLVMFuzzerTestOneInput()
|
D | deflate_fuzzer.cc | 52 ret = deflate(&stream, Z_FINISH); in LLVMFuzzerTestOneInput() 66 ret = inflate(&stream, Z_FINISH); in LLVMFuzzerTestOneInput()
|
/third_party/zlib/test/ |
D | example.c | 226 err = deflate(&c_stream, Z_FINISH); 322 err = deflate(&c_stream, Z_FINISH); 400 err = deflate(&c_stream, Z_FINISH); 442 err = inflate(&d_stream, Z_FINISH); 481 err = deflate(&c_stream, Z_FINISH);
|
/third_party/elfutils/libelf/ |
D | elf_compress.c | 154 flush = Z_FINISH; in __libelf_compress() 172 if (!force && flush == Z_FINISH && used >= *orig_size) in __libelf_compress() 195 while (flush != Z_FINISH); /* More data blocks. */ in __libelf_compress() 243 zrc = inflate (&z, Z_FINISH); in __libelf_decompress()
|
/third_party/libwebsockets/win32port/zlib/ |
D | deflate.c | 609 (s->status == FINISH_STATE && flush != Z_FINISH)) { 817 flush != Z_FINISH) { 877 if (flush != Z_FINISH) return Z_OK; 1521 FLUSH_BLOCK(s, flush == Z_FINISH); 1522 return flush == Z_FINISH ? finish_done : block_done; 1618 FLUSH_BLOCK(s, flush == Z_FINISH); 1619 return flush == Z_FINISH ? finish_done : block_done; 1743 FLUSH_BLOCK(s, flush == Z_FINISH); 1744 return flush == Z_FINISH ? finish_done : block_done; 1811 FLUSH_BLOCK(s, flush == Z_FINISH); [all …]
|
D | gzwrite.c | 77 (flush != Z_FINISH || ret == Z_STREAM_END))) { 103 if (flush == Z_FINISH) 442 if (flush < 0 || flush > Z_FINISH) 522 ret += gz_comp(state, Z_FINISH);
|
/third_party/skia/src/pdf/ |
D | SkDeflate.cpp | 54 SkASSERT(flush == Z_FINISH in do_deflate() 94 do_deflate(Z_FINISH, &fImpl->fZStream, fImpl->fOut, fImpl->fInBuffer, in finalize()
|
/third_party/zlib/contrib/delphi/ |
D | ZLib.pas | 171 Z_FINISH = 4; 304 while CCheck(deflate(strm, Z_FINISH)) <> Z_STREAM_END do 380 if DCheck(inflate(strm, Z_FINISH)) <> Z_STREAM_END then 424 while (CCheck(deflate(FZRec, Z_FINISH)) <> Z_STREAM_END)
|
/third_party/zlib/examples/ |
D | zpipe.c | 59 flush = feof(source) ? Z_FINISH : Z_NO_FLUSH; in def() 78 } while (flush != Z_FINISH); in def()
|
D | fitblk.c | 85 flush = Z_FINISH; in partcompress() 116 flush = Z_FINISH; in recompress()
|
/third_party/node/deps/v8/third_party/zlib/google/ |
D | compression_utils_portable.cc | 145 err = deflate(&stream, Z_FINISH); in CompressHelper() 192 err = inflate(&stream, Z_FINISH); in UncompressHelper()
|
/third_party/node/deps/zlib/google/ |
D | compression_utils_portable.cc | 145 err = deflate(&stream, Z_FINISH); in CompressHelper() 192 err = inflate(&stream, Z_FINISH); in UncompressHelper()
|
/third_party/skia/third_party/externals/zlib/google/ |
D | compression_utils_portable.cc | 145 err = deflate(&stream, Z_FINISH); in CompressHelper() 192 err = inflate(&stream, Z_FINISH); in UncompressHelper()
|
/third_party/node/deps/zlib/ |
D | deflate.c | 995 (s->status == FINISH_STATE && flush != Z_FINISH)) { in deflate() 1022 flush != Z_FINISH) { in deflate() 1266 if (flush != Z_FINISH) return Z_OK; in deflate() 1719 if (len < min_block && ((len == 0 && flush != Z_FINISH) || in deflate_stored() 1727 last = flush == Z_FINISH && len == left + s->strm->avail_in ? 1 : 0; in deflate_stored() 1809 if (flush != Z_NO_FLUSH && flush != Z_FINISH && in deflate_stored() 1847 ((left || flush == Z_FINISH) && flush != Z_NO_FLUSH && in deflate_stored() 1850 last = flush == Z_FINISH && s->strm->avail_in == 0 && in deflate_stored() 1955 if (flush == Z_FINISH) { in deflate_fast() 2089 if (flush == Z_FINISH) { in deflate_slow() [all …]
|
D | gzwrite.c | 104 (flush != Z_FINISH || ret == Z_STREAM_END))) { in gz_comp() 134 if (flush == Z_FINISH) in gz_comp() 541 if (flush < 0 || flush > Z_FINISH) in gzflush() 616 if (gz_comp(state, Z_FINISH) == -1) in gzclose_w()
|
/third_party/zlib/ |
D | deflate.c | 829 (s->status == FINISH_STATE && flush != Z_FINISH)) { 856 flush != Z_FINISH) { 1100 if (flush != Z_FINISH) return Z_OK; 1728 if (len < min_block && ((len == 0 && flush != Z_FINISH) || 1736 last = flush == Z_FINISH && len == left + s->strm->avail_in ? 1 : 0; 1818 if (flush != Z_NO_FLUSH && flush != Z_FINISH && 1856 ((left || flush == Z_FINISH) && flush != Z_NO_FLUSH && 1859 last = flush == Z_FINISH && s->strm->avail_in == 0 && 1964 if (flush == Z_FINISH) { 2095 if (flush == Z_FINISH) { [all …]
|
D | gzwrite.c | 117 (flush != Z_FINISH || ret == Z_STREAM_END))) { 147 if (flush == Z_FINISH) 583 if (flush < 0 || flush > Z_FINISH) 664 if (gz_comp(state, Z_FINISH) == -1)
|
/third_party/skia/third_party/externals/zlib/ |
D | deflate.c | 823 (s->status == FINISH_STATE && flush != Z_FINISH)) { 850 flush != Z_FINISH) { 1092 if (flush != Z_FINISH) return Z_OK; 1757 if (len < min_block && ((len == 0 && flush != Z_FINISH) || 1765 last = flush == Z_FINISH && len == left + s->strm->avail_in ? 1 : 0; 1844 if (flush != Z_NO_FLUSH && flush != Z_FINISH && 1879 ((left || flush == Z_FINISH) && flush != Z_NO_FLUSH && 1882 last = flush == Z_FINISH && s->strm->avail_in == 0 && 1987 if (flush == Z_FINISH) { 2124 if (flush == Z_FINISH) { [all …]
|
D | gzwrite.c | 106 (flush != Z_FINISH || ret == Z_STREAM_END))) { 136 if (flush == Z_FINISH) 569 if (flush < 0 || flush > Z_FINISH) 650 if (gz_comp(state, Z_FINISH) == -1)
|
/third_party/node/deps/v8/third_party/zlib/ |
D | deflate.c | 829 (s->status == FINISH_STATE && flush != Z_FINISH)) { 856 flush != Z_FINISH) { 1100 if (flush != Z_FINISH) return Z_OK; 1767 if (len < min_block && ((len == 0 && flush != Z_FINISH) || 1775 last = flush == Z_FINISH && len == left + s->strm->avail_in ? 1 : 0; 1857 if (flush != Z_NO_FLUSH && flush != Z_FINISH && 1895 ((left || flush == Z_FINISH) && flush != Z_NO_FLUSH && 1898 last = flush == Z_FINISH && s->strm->avail_in == 0 && 2003 if (flush == Z_FINISH) { 2140 if (flush == Z_FINISH) { [all …]
|
/third_party/cups-filters/filter/ |
D | rastertops.c | 263 flush = Z_FINISH; in write_flate() 298 } while (flush != Z_FINISH); in write_flate()
|