/third_party/zlib/examples/ |
H A 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()
|
H A D | zpipe.c | 59 flush = feof(source) ? Z_FINISH : Z_NO_FLUSH; in def() 125 ret = inflate(&strm, Z_NO_FLUSH); in inf()
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | gzwrite.c | 76 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH &&
120 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
135 if (gz_comp(state, Z_NO_FLUSH) == -1)
199 if (len && gz_comp(state, Z_NO_FLUSH) == -1)
205 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
212 if (gz_comp(state, Z_NO_FLUSH) == -1)
310 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
in gzprintf() 385 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
|
/third_party/zlib/contrib/pascal/ |
H A 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);
|
/third_party/zlib/test/ |
H A D | example.c | 188 err = deflate(&c_stream, Z_NO_FLUSH); in test_deflate() 230 err = inflate(&d_stream, Z_NO_FLUSH); in test_inflate() 273 err = deflate(&c_stream, Z_NO_FLUSH); in test_large_deflate() 284 err = deflate(&c_stream, Z_NO_FLUSH); in test_large_deflate() 291 err = deflate(&c_stream, Z_NO_FLUSH); in test_large_deflate() 327 err = inflate(&d_stream, Z_NO_FLUSH); in test_large_inflate() 406 err = inflate(&d_stream, Z_NO_FLUSH); in test_sync() 484 err = inflate(&d_stream, Z_NO_FLUSH); in test_dict_inflate()
|
H A 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()
|
/third_party/node/deps/v8/third_party/zlib/ |
H A 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) 445 if (gz_comp(state, Z_NO_FLUSH) == -1) in gzvprintf() 544 if (gz_comp(state, Z_NO_FLUSH) == -1)
|
H A D | uncompr.c | 70 err = inflate(&stream, Z_NO_FLUSH);
|
H A D | compress.c | 58 err = deflate(&stream, sourceLen ? Z_NO_FLUSH : Z_FINISH);
|
/third_party/node/deps/zlib/ |
H A D | gzwrite.c | 103 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH && in gz_comp() 149 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1) in gz_zero() 164 if (gz_comp(state, Z_NO_FLUSH) == -1) in gz_zero() 209 if (len && gz_comp(state, Z_NO_FLUSH) == -1) in gz_write() 215 if (state->strm.avail_in && gz_comp(state, Z_NO_FLUSH) == -1) in gz_write() 226 if (gz_comp(state, Z_NO_FLUSH) == -1) in gz_write() 421 if (gz_comp(state, Z_NO_FLUSH) == -1) in gzvprintf() 516 if (gz_comp(state, Z_NO_FLUSH) == -1) in gzprintf()
|
H A D | uncompr.c | 66 err = inflate(&stream, Z_NO_FLUSH); in uncompress2()
|
H A D | compress.c | 53 err = deflate(&stream, sourceLen ? Z_NO_FLUSH : Z_FINISH); in compress2()
|
/third_party/skia/third_party/externals/zlib/ |
H A 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)
|
H A D | deflate.c | 173 /* rank Z_BLOCK between Z_NO_FLUSH and Z_PARTIAL_FLUSH */ 543 s->last_flush = Z_NO_FLUSH; 1043 (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) { 1059 /* If flush != Z_NO_FLUSH && avail_out == 0, the next call 1758 flush == Z_NO_FLUSH || 1844 if (flush != Z_NO_FLUSH && flush != Z_FINISH && 1879 ((left || flush == Z_FINISH) && flush != Z_NO_FLUSH && 1915 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { 2018 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { 2117 Assert (flush != Z_NO_FLUSH, "n [all...] |
H A D | compress.c | 58 err = deflate(&stream, sourceLen ? Z_NO_FLUSH : Z_FINISH);
|
H A D | uncompr.c | 70 err = inflate(&stream, Z_NO_FLUSH);
|
/third_party/zlib/ |
H A D | gzwrite.c | 107 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH && in gz_comp() 154 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1) in gz_zero() 169 if (gz_comp(state, Z_NO_FLUSH) == -1) in gz_zero() 215 if (len && gz_comp(state, Z_NO_FLUSH) == -1) in gz_write() 221 if (state->strm.avail_in && gz_comp(state, Z_NO_FLUSH) == -1) in gz_write() 232 if (gz_comp(state, Z_NO_FLUSH) == -1) in gz_write() 428 if (gz_comp(state, Z_NO_FLUSH) == -1) in gzvprintf() 523 if (gz_comp(state, Z_NO_FLUSH) == -1) in gzprintf()
|
H A D | compress.c | 53 err = deflate(&stream, sourceLen ? Z_NO_FLUSH : Z_FINISH); in compress2()
|
H A D | uncompr.c | 66 err = inflate(&stream, Z_NO_FLUSH); in uncompress2()
|
/third_party/skia/third_party/externals/zlib/contrib/tests/ |
H A D | infcover.cc | 342 ret = inflate(&strm, Z_NO_FLUSH); assert(err == 9 || ret == err); in inf() 355 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_BUF_ERROR); in inf() 444 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_MEM_ERROR); in cover_wrap() 445 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_MEM_ERROR); in cover_wrap() 455 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_STREAM_ERROR); in cover_wrap()
|
/third_party/skia/third_party/externals/zlib/contrib/tests/fuzzers/ |
H A D | inflate_fuzzer.cc | 37 inflate(&stream, Z_NO_FLUSH); in LLVMFuzzerTestOneInput()
|
/third_party/node/test/parallel/ |
H A D | test-zlib-flush.js | 21 deflater.flush(zlib.constants.Z_NO_FLUSH, function() {
|
/third_party/nghttp2/src/ |
H A D | nghttp2_gzip.c | 62 rv = inflate(&inflater->zst, Z_NO_FLUSH); in nghttp2_gzip_inflate()
|
/third_party/mesa3d/src/util/ |
H A D | compress.c | 146 ret = inflate(&strm, Z_NO_FLUSH); in util_compress_inflate()
|
/third_party/skia/third_party/externals/freetype/src/gzip/ |
H A D | zlib.h | 125 #define Z_NO_FLUSH 0 macro
|