Home
last modified time | relevance | path

Searched refs:Z_FINISH (Results 1 – 21 of 21) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dexample.c195 err = deflate(&c_stream, Z_FINISH);
291 err = deflate(&c_stream, Z_FINISH);
369 err = deflate(&c_stream, Z_FINISH);
411 err = inflate(&d_stream, Z_FINISH);
451 err = deflate(&c_stream, Z_FINISH);
Duncompr.c50 err = inflate(&stream, Z_FINISH);
Ddeflate.c560 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 …]
Dcompress.c49 err = deflate(&stream, Z_FINISH);
Dzlib.h166 #define Z_FINISH 4 macro
DChangeLog486 . Simplify Z_FINISH check in inflate()
547 - check Z_FINISH in inflate (thanks to Marc Schluper)
621 - In very rare conditions, deflate(s, Z_FINISH) could fail to produce an EOF
798 - deflate(Z_FINISH) now returns Z_STREAM_END when done. Warning: this
832 - support decompression but only in a single step (forced Z_FINISH)
853 - use Z_FINISH instead of deflateEnd to finish compression.
Dgzio.c964 if (do_flush (file, Z_FINISH) != Z_OK)
Dinflate.c1150 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
DFAQ38 zero. When setting the parameter flush equal to Z_FINISH, also make sure
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Duncompr.c48 err = inflate(&stream, Z_FINISH);
Dexample.c226 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);
Dcompress.c49 err = deflate(&stream, Z_FINISH);
Dgzwrite.c99 (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)
Ddeflate.c680 (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) {
Dminigzip.c312 (void)deflate(strm, Z_FINISH);
Dzlib.h168 #define Z_FINISH 4 macro
Dinflate.c1233 (state->mode < CHECK || flush != Z_FINISH)))
1249 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
DChangeLog98 - Improve inflate() documentation on the use of Z_FINISH
215 - Have inflate() with Z_FINISH avoid the allocation of a window
251 - Clarify the use of Z_FINISH with deflateBound() amount of space
1103 . Simplify Z_FINISH check in inflate()
1164 - check Z_FINISH in inflate (thanks to Marc Schluper)
1238 - In very rare conditions, deflate(s, Z_FINISH) could fail to produce an EOF
1415 - deflate(Z_FINISH) now returns Z_STREAM_END when done. Warning: this
1449 - support decompression but only in a single step (forced Z_FINISH)
1470 - use Z_FINISH instead of deflateEnd to finish compression.
DFAQ36 When setting the parameter flush equal to Z_FINISH, also make sure that
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dzlibmodule.c186 err = deflate(&zst, Z_FINISH); in PyZlib_compress()
258 err=inflate(&zst, Z_FINISH); in PyZlib_decompress()
628 int flushmode = Z_FINISH; in PyZlib_flush()
672 if (err == Z_STREAM_END && flushmode == Z_FINISH) { in PyZlib_flush()
839 err = inflate(&(self->zst), Z_FINISH); in PyZlib_unflush()
852 err = inflate(&(self->zst), Z_FINISH); in PyZlib_unflush()
1079 PyModule_AddIntConstant(m, "Z_FINISH", Z_FINISH); in PyInit_zlib()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dzlibmodule.c180 err = deflate(&zst, Z_FINISH); in PyZlib_compress()
252 err=inflate(&zst, Z_FINISH); in PyZlib_decompress()
602 int flushmode = Z_FINISH; in PyZlib_flush()
646 if (err == Z_STREAM_END && flushmode == Z_FINISH) { in PyZlib_flush()
811 err = inflate(&(self->zst), Z_FINISH); in PyZlib_unflush()
824 err = inflate(&(self->zst), Z_FINISH); in PyZlib_unflush()
1044 PyModule_AddIntConstant(m, "Z_FINISH", Z_FINISH); in PyInit_zlib()