Home
last modified time | relevance | path

Searched refs:Z_FINISH (Results 1 – 25 of 94) sorted by relevance

1234

/third_party/skia/third_party/externals/zlib/contrib/tests/
Dutils_unittest.cc115 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/
Dtest-zlib-sync-no-event.js12 const zipped = zipper._processChunk(buffer, zlib.constants.Z_FINISH);
17 const unzipped = unzipper._processChunk(zipped, zlib.constants.Z_FINISH);
Dtest-zlib-brotli.js78 zlib.brotliCompressSync('', { flush: zlib.constants.Z_FINISH });
87 zlib.brotliCompressSync('', { finishFlush: zlib.constants.Z_FINISH });
/third_party/zlib/contrib/pascal/
Dexample.pas214 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/
Dstreaming_inflate_fuzzer.cc38 ret = deflate(&comp_strm, Z_FINISH); in LLVMFuzzerTestOneInput()
56 ret = inflate(&decomp_strm, Z_FINISH); in LLVMFuzzerTestOneInput()
Ddeflate_fuzzer.cc52 ret = deflate(&stream, Z_FINISH); in LLVMFuzzerTestOneInput()
66 ret = inflate(&stream, Z_FINISH); in LLVMFuzzerTestOneInput()
/third_party/zlib/test/
Dexample.c226 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/
Delf_compress.c154 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/
Ddeflate.c609 (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 …]
Dgzwrite.c77 (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/
DSkDeflate.cpp54 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/
DZLib.pas171 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/
Dzpipe.c59 flush = feof(source) ? Z_FINISH : Z_NO_FLUSH; in def()
78 } while (flush != Z_FINISH); in def()
Dfitblk.c85 flush = Z_FINISH; in partcompress()
116 flush = Z_FINISH; in recompress()
/third_party/node/deps/v8/third_party/zlib/google/
Dcompression_utils_portable.cc145 err = deflate(&stream, Z_FINISH); in CompressHelper()
192 err = inflate(&stream, Z_FINISH); in UncompressHelper()
/third_party/node/deps/zlib/google/
Dcompression_utils_portable.cc145 err = deflate(&stream, Z_FINISH); in CompressHelper()
192 err = inflate(&stream, Z_FINISH); in UncompressHelper()
/third_party/skia/third_party/externals/zlib/google/
Dcompression_utils_portable.cc145 err = deflate(&stream, Z_FINISH); in CompressHelper()
192 err = inflate(&stream, Z_FINISH); in UncompressHelper()
/third_party/node/deps/zlib/
Ddeflate.c995 (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 …]
Dgzwrite.c104 (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/
Ddeflate.c829 (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 …]
Dgzwrite.c117 (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/
Ddeflate.c823 (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 …]
Dgzwrite.c106 (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/
Ddeflate.c829 (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/
Drastertops.c263 flush = Z_FINISH; in write_flate()
298 } while (flush != Z_FINISH); in write_flate()

1234