Searched refs:Z_FINISH (Results 1 – 25 of 68) sorted by relevance
123
/external/zlib/src/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);
|
/external/chromium_org/third_party/skia/src/core/ |
D | SkFlate.cpp | 95 rc = deflate(&flateData, Z_FINISH); in doFlate() 97 rc = inflate(&flateData, Z_FINISH); in doFlate()
|
/external/skia/src/core/ |
D | SkFlate.cpp | 95 rc = deflate(&flateData, Z_FINISH); in doFlate() 97 rc = inflate(&flateData, Z_FINISH); in doFlate()
|
/external/zlib/src/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()
|
/external/zlib/src/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); 482 err = deflate(&c_stream, Z_FINISH);
|
/external/zlib/src/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)
|
/external/qemu/distrib/zlib-1.2.3/ |
D | deflate.c | 560 flush > Z_FINISH || flush < 0) { 567 (s->status == FINISH_STATE && flush != Z_FINISH)) { 775 flush != Z_FINISH) { 829 if (flush != Z_FINISH) return Z_OK; 1437 FLUSH_BLOCK(s, flush == Z_FINISH); 1438 return flush == Z_FINISH ? finish_done : block_done; 1544 FLUSH_BLOCK(s, flush == Z_FINISH); 1545 return flush == Z_FINISH ? finish_done : block_done; 1672 FLUSH_BLOCK(s, flush == Z_FINISH); 1673 return flush == Z_FINISH ? finish_done : block_done; [all …]
|
D | uncompr.c | 50 err = inflate(&stream, Z_FINISH);
|
D | compress.c | 49 err = deflate(&stream, Z_FINISH);
|
/external/chromium_org/third_party/zlib/ |
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);
|
D | deflate.c | 603 (s->status == FINISH_STATE && flush != Z_FINISH)) { 811 flush != Z_FINISH) { 888 if (flush != Z_FINISH) return Z_OK; 1671 FLUSH_BLOCK(s, flush == Z_FINISH); 1672 return flush == Z_FINISH ? finish_done : block_done; 1774 FLUSH_BLOCK(s, flush == Z_FINISH); 1775 return flush == Z_FINISH ? finish_done : block_done; 1930 FLUSH_BLOCK(s, flush == Z_FINISH); 1931 return flush == Z_FINISH ? finish_done : block_done; 1998 FLUSH_BLOCK(s, flush == Z_FINISH); [all …]
|
D | uncompr.c | 48 err = inflate(&stream, Z_FINISH);
|
D | compress.c | 49 err = deflate(&stream, Z_FINISH);
|
/external/zlib/src/ |
D | uncompr.c | 48 err = inflate(&stream, Z_FINISH);
|
D | gzwrite.c | 99 (flush != Z_FINISH || ret == Z_STREAM_END))) { 125 if (flush == Z_FINISH) 481 if (flush < 0 || flush > Z_FINISH) 562 if (gz_comp(state, Z_FINISH) == -1)
|
D | compress.c | 49 err = deflate(&stream, Z_FINISH);
|
D | deflate.c | 680 (s->status == FINISH_STATE && flush != Z_FINISH)) { 888 flush != Z_FINISH) { 949 if (flush != Z_FINISH) return Z_OK; 1612 if (flush == Z_FINISH) { 1715 if (flush == Z_FINISH) { 1846 if (flush == Z_FINISH) { 1921 if (flush == Z_FINISH) { 1960 if (flush == Z_FINISH) {
|
/external/protobuf/src/google/protobuf/io/ |
D | gzip_stream.cc | 254 if (((flush == Z_FULL_FLUSH) || (flush == Z_FINISH)) in Deflate() 308 zerror_ = Deflate(Z_FINISH); in Close()
|
/external/chromium_org/chrome/browser/metrics/ |
D | compression_utils.cc | 63 err = deflate(&stream, Z_FINISH); in GzipCompressHelper()
|
/external/chromium_org/net/quic/crypto/ |
D | cert_compressor.cc | 548 rv = deflate(&z, Z_FINISH); in CompressChain() 600 int rv = inflate(&z, Z_FINISH); in DecompressChain() 607 rv = inflate(&z, Z_FINISH); in DecompressChain()
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/ |
D | gzip_stream.cc | 260 if ((flush == Z_FULL_FLUSH) || (flush == Z_FINISH)) { in Deflate() 314 zerror_ = Deflate(Z_FINISH); in Close()
|
/external/kernel-headers/original/linux/ |
D | zlib.h | 144 #define Z_FINISH 5 macro
|
/external/qemu/block/ |
D | cloop.c | 122 ret = inflate(&s->zstream, Z_FINISH); in cloop_read_block()
|
/external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
D | WebSocketDeflater.cpp | 215 int result = inflate(m_stream.get(), Z_FINISH); in finish()
|
123