Home
last modified time | relevance | path

Searched refs:Z_NO_FLUSH (Results 1 – 25 of 54) sorted by relevance

123

/external/zlib/src/contrib/pascal/
Dexample.pas206 err := deflate(c_stream, Z_NO_FLUSH);
252 err := inflate(d_stream, Z_NO_FLUSH);
292 err := deflate(c_stream, Z_NO_FLUSH);
301 err := deflate(c_stream, Z_NO_FLUSH);
308 err := deflate(c_stream, Z_NO_FLUSH);
345 err := inflate(d_stream, Z_NO_FLUSH);
427 inflate(d_stream, Z_NO_FLUSH);
506 err := inflate(d_stream, Z_NO_FLUSH);
Dzlibpas.pas68 Z_NO_FLUSH = 0;
/external/zlib/src/examples/
Dfitblk.c78 flush = Z_NO_FLUSH; in partcompress()
88 } while (def->avail_out != 0 && flush == Z_NO_FLUSH); in partcompress()
101 flush = Z_NO_FLUSH; in recompress()
106 ret = inflate(inf, Z_NO_FLUSH); in recompress()
Dzpipe.c59 flush = feof(source) ? Z_FINISH : Z_NO_FLUSH; in def()
125 ret = inflate(&strm, Z_NO_FLUSH); in inf()
Dzran.c326 ret = inflate(&strm, Z_NO_FLUSH); /* normal inflate */ in extract()
/external/zlib/src/
Dgzwrite.c98 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH &&
142 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
157 if (gz_comp(state, Z_NO_FLUSH) == -1)
223 if (len && gz_comp(state, Z_NO_FLUSH) == -1)
229 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
236 if (gz_comp(state, Z_NO_FLUSH) == -1)
338 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1) in gzvprintf()
423 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
Ddeflate.c419 s->last_flush = Z_NO_FLUSH;
900 (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) {
1587 if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more;
1643 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1746 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1839 Assert (flush != Z_NO_FLUSH, "no flush?");
1876 if (s->lookahead <= MAX_MATCH && flush == Z_NO_FLUSH) {
1945 if (flush == Z_NO_FLUSH)
/external/pdfium/third_party/zlib_v128/
Dgzwrite.c98 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH && in gz_comp()
142 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1) in gz_zero()
157 if (gz_comp(state, Z_NO_FLUSH) == -1) in gz_zero()
223 if (len && gz_comp(state, Z_NO_FLUSH) == -1) in gzwrite()
229 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1) in gzwrite()
236 if (gz_comp(state, Z_NO_FLUSH) == -1) in gzwrite()
338 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1) in gzvprintf()
422 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1) in gzprintf()
Ddeflate.c418 s->last_flush = Z_NO_FLUSH; in deflateResetKeep()
899 (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) { in deflate()
1586 if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more; in deflate_stored()
1642 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { in deflate_fast()
1745 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { in deflate_slow()
1838 Assert (flush != Z_NO_FLUSH, "no flush?"); in deflate_slow()
1875 if (s->lookahead <= MAX_MATCH && flush == Z_NO_FLUSH) { in deflate_rle()
1944 if (flush == Z_NO_FLUSH) in deflate_huff()
/external/opencv3/3rdparty/zlib/
Dgzwrite.c98 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH &&
142 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
157 if (gz_comp(state, Z_NO_FLUSH) == -1)
223 if (len && gz_comp(state, Z_NO_FLUSH) == -1)
229 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
236 if (gz_comp(state, Z_NO_FLUSH) == -1)
338 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1) in gzvprintf()
423 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
Ddeflate.c419 s->last_flush = Z_NO_FLUSH;
900 (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) {
1587 if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more;
1643 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1746 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1839 Assert (flush != Z_NO_FLUSH, "no flush?");
1876 if (s->lookahead <= MAX_MATCH && flush == Z_NO_FLUSH) {
1945 if (flush == Z_NO_FLUSH)
/external/zlib/src/test/
Dexample.c220 err = deflate(&c_stream, Z_NO_FLUSH);
260 err = inflate(&d_stream, Z_NO_FLUSH);
301 err = deflate(&c_stream, Z_NO_FLUSH);
312 err = deflate(&c_stream, Z_NO_FLUSH);
319 err = deflate(&c_stream, Z_NO_FLUSH);
356 err = inflate(&d_stream, Z_NO_FLUSH);
435 inflate(&d_stream, Z_NO_FLUSH);
517 err = inflate(&d_stream, Z_NO_FLUSH);
Dinfcover.c320 ret = inflate(&strm, Z_NO_FLUSH); assert(err == 9 || ret == err); in inf()
333 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_BUF_ERROR); in inf()
422 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_MEM_ERROR); in cover_wrap()
423 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_MEM_ERROR); in cover_wrap()
433 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_STREAM_ERROR); in cover_wrap()
Dminigzip.c252 (void)deflate(strm, Z_NO_FLUSH);
283 ret = inflate(strm, Z_NO_FLUSH);
/external/protobuf/src/google/protobuf/io/
Dgzip_stream.cc150 zerror_ = Inflate(Z_NO_FLUSH); in Next()
276 zerror_ = Deflate(Z_NO_FLUSH); in Next()
/external/freetype/src/gzip/
Dzlib.h125 #define Z_NO_FLUSH 0 macro
/external/skia/src/pdf/
DSkDeflate.cpp116 do_deflate(Z_NO_FLUSH, &fImpl->fZStream, fImpl->fOut, in write()
/external/libmicrohttpd/src/microspdy/
Dcompression.c275 flush = Z_NO_FLUSH; in SPDYF_zlib_deflate()
/external/zlib/src/contrib/delphi/
DZLib.pas167 Z_NO_FLUSH = 0;
347 while DCheck(inflate(strm, Z_NO_FLUSH)) <> Z_STREAM_END do
/external/skia/tests/
DPDFDeflateWStreamTest.cpp84 rc = inflate(&flateData, Z_NO_FLUSH); in stream_inflate()
/external/squashfs-tools/kernel/fs/squashfs/
Dblock.c204 zlib_err = zlib_inflate(&msblk->stream, Z_NO_FLUSH); in squashfs_read_data()
/external/zlib/src/contrib/ada/
Dzlib-thin.ads54 Z_NO_FLUSH : constant := 8#0000#; -- zlib.h:125
/external/libpng/
Dpngwutil.c582 input_len > 0 ? Z_NO_FLUSH : Z_FINISH); in png_text_compress()
977 ret = deflate(&png_ptr->zstream, input_len > 0 ? Z_NO_FLUSH : flush); in png_compress_IDAT()
1011 if (ret == Z_OK && flush != Z_NO_FLUSH) in png_compress_IDAT()
2598 png_compress_IDAT(png_ptr, filtered_row, full_row_length, Z_NO_FLUSH); in png_write_filtered_row()
/external/opencv3/3rdparty/libtiff/
Dtif_zip.c275 if (deflate(&sp->stream, Z_NO_FLUSH) != Z_OK) { in ZIPEncode()
/external/pdfium/third_party/libtiff/
Dtif_zip.c277 if (deflate(&sp->stream, Z_NO_FLUSH) != Z_OK) { in ZIPEncode()

123