Searched refs:Z_FINISH (Results 1 – 23 of 23) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | example.c | 195 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);
|
D | uncompr.c | 50 err = inflate(&stream, Z_FINISH);
|
D | compress.c | 49 err = deflate(&stream, Z_FINISH);
|
D | deflate.c | 560 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 …]
|
D | zlib.h | 166 #define Z_FINISH 4 macro
|
D | ChangeLog | 486 . 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.
|
D | gzio.c | 964 if (do_flush (file, Z_FINISH) != Z_OK)
|
D | inflate.c | 1150 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
|
D | FAQ | 38 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/ |
D | uncompr.c | 48 err = inflate(&stream, Z_FINISH);
|
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);
|
D | compress.c | 49 err = deflate(&stream, Z_FINISH);
|
D | gzwrite.c | 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)
|
D | deflate.c | 680 (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) {
|
D | minigzip.c | 312 (void)deflate(strm, Z_FINISH);
|
D | zlib.h | 168 #define Z_FINISH 4 macro
|
D | inflate.c | 1233 (state->mode < CHECK || flush != Z_FINISH))) 1249 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
|
D | ChangeLog | 98 - 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.
|
D | FAQ | 36 When setting the parameter flush equal to Z_FINISH, also make sure that
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | zlibmodule.c | 180 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()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | zlibmodule.c | 186 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/EmbeddedPkg/Library/ZLib/ |
D | zlib.h | 172 #define Z_FINISH 4 macro
|
D | inflate.c | 1257 (state->mode < CHECK || flush != Z_FINISH))) 1273 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
|