/external/zlib/src/contrib/pascal/ |
D | example.pas | 206 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);
|
/external/zlib/src/examples/ |
D | fitblk.c | 78 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()
|
D | zpipe.c | 59 flush = feof(source) ? Z_FINISH : Z_NO_FLUSH; in def() 125 ret = inflate(&strm, Z_NO_FLUSH); in inf()
|
/external/zlib/src/test/ |
D | example.c | 220 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 err = inflate(&d_stream, Z_NO_FLUSH); 517 err = inflate(&d_stream, Z_NO_FLUSH);
|
D | infcover.c | 320 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()
|
/external/python/cpython2/Modules/zlib/ |
D | example.c | 220 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);
|
D | gzwrite.c | 105 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH && 154 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1) 169 if (gz_comp(state, Z_NO_FLUSH) == -1) 218 if (len && gz_comp(state, Z_NO_FLUSH) == -1) 224 if (state->strm.avail_in && gz_comp(state, Z_NO_FLUSH) == -1) 235 if (gz_comp(state, Z_NO_FLUSH) == -1) 442 if (gz_comp(state, Z_NO_FLUSH) == -1) in gzvprintf() 541 if (gz_comp(state, Z_NO_FLUSH) == -1)
|
D | deflate.c | 497 s->last_flush = Z_NO_FLUSH; 997 (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) { 1682 flush == Z_NO_FLUSH || 1768 if (flush != Z_NO_FLUSH && flush != Z_FINISH && 1803 ((left || flush == Z_FINISH) && flush != Z_NO_FLUSH && 1839 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { 1942 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { 2035 Assert (flush != Z_NO_FLUSH, "no flush?"); 2072 if (s->lookahead <= MAX_MATCH && flush == Z_NO_FLUSH) { 2141 if (flush == Z_NO_FLUSH)
|
D | compress.c | 58 err = deflate(&stream, sourceLen ? Z_NO_FLUSH : Z_FINISH);
|
D | uncompr.c | 70 err = inflate(&stream, Z_NO_FLUSH);
|
/external/zlib/src/ |
D | gzwrite.c | 105 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH && 154 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1) 169 if (gz_comp(state, Z_NO_FLUSH) == -1) 218 if (len && gz_comp(state, Z_NO_FLUSH) == -1) 224 if (state->strm.avail_in && gz_comp(state, Z_NO_FLUSH) == -1) 235 if (gz_comp(state, Z_NO_FLUSH) == -1) 442 if (gz_comp(state, Z_NO_FLUSH) == -1) in gzvprintf() 541 if (gz_comp(state, Z_NO_FLUSH) == -1)
|
D | compress.c | 58 err = deflate(&stream, sourceLen ? Z_NO_FLUSH : Z_FINISH);
|
D | uncompr.c | 70 err = inflate(&stream, Z_NO_FLUSH);
|
D | deflate.c | 997 (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) { 1682 flush == Z_NO_FLUSH || 1768 if (flush != Z_NO_FLUSH && flush != Z_FINISH && 1803 ((left || flush == Z_FINISH) && flush != Z_NO_FLUSH && 1839 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { 1942 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { 2035 Assert (flush != Z_NO_FLUSH, "no flush?"); 2072 if (s->lookahead <= MAX_MATCH && flush == Z_NO_FLUSH) { 2141 if (flush == Z_NO_FLUSH)
|
/external/tensorflow/tensorflow/core/lib/io/ |
D | zlib_compression_options.cc | 24 flush_mode = Z_NO_FLUSH; in ZlibCompressionOptions()
|
/external/python/cpython2/Modules/ |
D | zlibmodule.c | 240 flush = ibuflen == 0 ? Z_FINISH : Z_NO_FLUSH; in PyZlib_compress() 325 flush = ibuflen == 0 ? Z_FINISH : Z_NO_FLUSH; in PyZlib_decompress() 504 err = deflate(&self->zst, Z_NO_FLUSH); in PyZlib_objcompress() 697 if (flushmode == Z_NO_FLUSH) { in PyZlib_flush() 884 flush = ibuflen == 0 ? Z_FINISH : Z_NO_FLUSH; in PyZlib_unflush() 1150 PyModule_AddIntConstant(m, "Z_NO_FLUSH", Z_NO_FLUSH); in PyInit_zlib()
|
/external/python/cpython3/Modules/ |
D | zlibmodule.c | 239 flush = ibuflen == 0 ? Z_FINISH : Z_NO_FLUSH; in zlib_compress_impl() 364 flush = ibuflen == 0 ? Z_FINISH : Z_NO_FLUSH; in zlib_decompress_impl() 668 err = deflate(&self->zst, Z_NO_FLUSH); in zlib_Compress_compress_impl() 871 if (mode == Z_NO_FLUSH) { in zlib_Compress_flush_impl() 1078 flush = ibuflen == 0 ? Z_FINISH : Z_NO_FLUSH; in zlib_Decompress_flush_impl() 1380 PyModule_AddIntMacro(m, Z_NO_FLUSH); in PyInit_zlib()
|
/external/protobuf/src/google/protobuf/io/ |
D | gzip_stream.cc | 152 zerror_ = Inflate(Z_NO_FLUSH); in Next() 280 zerror_ = Deflate(Z_NO_FLUSH); in Next()
|
/external/u-boot/lib/zlib/ |
D | deflate.c | 380 s->last_flush = Z_NO_FLUSH; 815 (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) { 1483 if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more; 1533 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { 1630 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { 1723 Assert (flush != Z_NO_FLUSH, "no flush?"); 1754 if (s->lookahead < MAX_MATCH && flush == Z_NO_FLUSH) { 1816 if (flush == Z_NO_FLUSH)
|
/external/freetype/src/gzip/ |
D | zlib.h | 125 #define Z_NO_FLUSH 0 macro
|
/external/u-boot/lib/ |
D | gzip.c | 83 Z_NO_FLUSH : Z_FINISH; in zzip()
|
/external/u-boot/fs/btrfs/ |
D | compression.c | 97 ret = inflate(&stream, Z_NO_FLUSH); in decompress_zlib()
|
/external/skqp/src/pdf/ |
D | SkDeflate.cpp | 116 do_deflate(Z_NO_FLUSH, &fImpl->fZStream, fImpl->fOut, in write()
|
/external/skia/src/pdf/ |
D | SkDeflate.cpp | 116 do_deflate(Z_NO_FLUSH, &fImpl->fZStream, fImpl->fOut, in write()
|
/external/zlib/src/contrib/delphi/ |
D | ZLib.pas | 167 Z_NO_FLUSH = 0; 347 while DCheck(inflate(strm, Z_NO_FLUSH)) <> Z_STREAM_END do
|