/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/ |
H A D | fx_zlib_uncompr.c | 48 err = inflate(&stream, Z_FINISH);
|
H A D | fx_zlib_compress.c | 49 err = deflate(&stream, Z_FINISH);
|
H A D | gzwrite.c | 66 flush is assumed to be a valid deflate() flush value. If flush is Z_FINISH, 97 doing Z_FINISH then don't write until we get to Z_STREAM_END */ 99 (flush != Z_FINISH || ret == Z_STREAM_END))) { 125 if (flush == Z_FINISH) 480 if (flush < 0 || flush > Z_FINISH) 561 if (gz_comp(state, Z_FINISH) == -1)
|
H A D | fx_zlib_deflate.c | 410 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */ 679 (s->status == FINISH_STATE && flush != Z_FINISH)) { 883 * flushes. For repeated and useless calls with Z_FINISH, we keep 887 flush != Z_FINISH) { 948 if (flush != Z_FINISH) return Z_OK; 1611 if (flush == Z_FINISH) { 1714 if (flush == Z_FINISH) { 1845 if (flush == Z_FINISH) { 1920 if (flush == Z_FINISH) { 1959 if (flush == Z_FINISH) { [all...] |
/external/zlib/src/ |
H A D | uncompr.c | 48 err = inflate(&stream, Z_FINISH);
|
H A D | compress.c | 49 err = deflate(&stream, Z_FINISH);
|
H A D | gzwrite.c | 66 flush is assumed to be a valid deflate() flush value. If flush is Z_FINISH, 97 doing Z_FINISH then don't write until we get to Z_STREAM_END */ 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)
|
H A D | deflate.c | 411 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */ 680 (s->status == FINISH_STATE && flush != Z_FINISH)) { 884 * flushes. For repeated and useless calls with Z_FINISH, we keep 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) { [all...] |
H A D | zlib.h | 168 #define Z_FINISH 4 macro 320 If the parameter flush is set to Z_FINISH, pending input is processed, 323 called again with Z_FINISH and more output space (updated avail_out) but no 328 Z_FINISH can be used immediately after deflateInit if all the compression 345 Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example 421 The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH, Z_FINISH, 453 single call of inflate), the parameter flush should be set to Z_FINISH. In 457 saved by the compressor for this purpose.) The use of Z_FINISH is not 460 call. Z_FINISH also informs inflate to not maintain a sliding window if the 472 memory for a sliding window when Z_FINISH i [all...] |
/external/skia/src/core/ |
H A D | SkFlate.cpp | 91 rc = deflate(&flateData, Z_FINISH); 93 rc = inflate(&flateData, Z_FINISH); 160 SkASSERT(flush == Z_FINISH 193 do_deflate(Z_FINISH, &fImpl->fZStream, fImpl->fOut, fImpl->fInBuffer,
|
/external/zlib/src/examples/ |
H A D | fitblk.c | 85 flush = Z_FINISH; 116 flush = Z_FINISH;
|
H A D | zpipe.c | 59 flush = feof(source) ? Z_FINISH : Z_NO_FLUSH; 78 } while (flush != Z_FINISH);
|
H A D | gzappend.c | 426 ret = deflate(strm, last && len == 0 ? Z_FINISH : Z_NO_FLUSH);
|
/external/freetype/src/gzip/ |
H A D | zlib.h | 129 #define Z_FINISH 4 macro 245 If the parameter flush is set to Z_FINISH, pending input is processed, 248 called again with Z_FINISH and more output space (updated avail_out) but no 253 Z_FINISH can be used immediately after deflateInit if all the compression 269 Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example 341 and Z_FINISH, but the current implementation actually flushes as much output 347 Z_FINISH. In this case all pending input is processed and all pending 351 be inflateEnd to deallocate the decompression state. The use of Z_FINISH 372 enough room in the output buffer when Z_FINISH is used. In the Z_DATA_ERROR 713 the flush parameter is Z_FINISH an [all...] |
H A D | inflate.c | 156 f = f == Z_FINISH ? Z_BUF_ERROR : Z_OK;
|
H A D | ftgzip.c | 731 err = inflate( &stream, Z_FINISH );
|
/external/protobuf/src/google/protobuf/io/ |
H A D | gzip_stream.cc | 260 if ((flush == Z_FULL_FLUSH) || (flush == Z_FINISH)) { 314 zerror_ = Deflate(Z_FINISH);
|
/external/zlib/src/test/ |
H A 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/pascal/ |
H A 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/zlib/src/contrib/delphi/ |
H A 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/zlib/src/contrib/testzlib/ |
H A D | testzlib.c | 209 ret=deflate(&zcpr,(zcpr.avail_in==lOrigToDo) ? Z_FINISH : Z_SYNC_FLUSH);
|
/external/elfutils/src/libdw/ |
H A D | dwarf_begin_elf.c | 190 zrc = inflate (&z, Z_FINISH);
|
/external/squashfs-tools/squashfs-tools/ |
H A D | gzip_wrapper.c | 424 res = deflate(&stream->stream, Z_FINISH);
|
/external/zlib/ |
H A D | zlib.h | 168 #define Z_FINISH 4 macro 320 If the parameter flush is set to Z_FINISH, pending input is processed, 323 called again with Z_FINISH and more output space (updated avail_out) but no 328 Z_FINISH can be used immediately after deflateInit if all the compression 345 Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example 421 The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH, Z_FINISH, 453 single call of inflate), the parameter flush should be set to Z_FINISH. In 457 saved by the compressor for this purpose.) The use of Z_FINISH is not 460 call. Z_FINISH also informs inflate to not maintain a sliding window if the 472 memory for a sliding window when Z_FINISH i [all...] |
/external/fio/ |
H A D | iolog.c | 1035 ret = deflate(&stream, Z_FINISH); 1043 ret = deflate(&stream, Z_FINISH);
|