Lines Matching refs:inflate
89 - Update inflateBack() comments, since inflate() can be faster
141 - Improve inflate() documentation on the use of Z_FINISH
253 - Remove code from inflate.c and infback.c that is impossible to execute
254 - Test the inflate code with full coverage
258 - Have inflate() with Z_FINISH avoid the allocation of a window
259 - Do not set strm->adler when doing raw inflate
415 - Fix name change from inflate.h in contrib/inflate86/inffas86.c
480 - Avoid unused parameter warning in inflate.c
481 - Avoid signed-unsigned comparison warning in inflate.c
552 Assures that random input to inflate eventually results in an error
558 - Correct inflate() comments with regard to automatic header detection
574 - Add Z_TREES flush option to inflate() to return at end of trees
661 - Fix structure size comment in inflate.h
672 - Avoid more silly Visual C warnings in inflate.c and inftrees.c for 64-bit
678 - Fix cast for assignments to strm->state in inflate.c and infback.c
687 invalid inflate input. Thanks to Tavis Ormandy and Markus Oberhumer for
694 - Replace 1U constants in inflate.c and inftrees.c for 64-bit compile
704 - Remove USE_DICT_HEAD in deflate.c (would mess up inflate if used)
715 - Replace structure assignments in deflate.c and inflate.c with zmemcpy to
735 - Allow inflateSetDictionary() call for raw inflate
736 - Fix inflate header crc check bug for file names and comments
742 - Remove GUNZIP condition from definition of inflate_mode in inflate.h
767 - Fix bug in error case in inflate.c, infback.c, and infback9.c [Brown]
809 - Correct Z_BLOCK to not return on first inflate call if no wrap
810 - Fix strm->data_type on inflate() return to correctly indicate EOB
850 - Add Z_BLOCK flush option to return from inflate at block boundary
851 - Set strm->data_type on return from inflate
888 - Fix prototype of syncsearch in inflate.c [Truta]
916 - Make inflate distance-too-far checks more rigorous
917 - Clean up FAR usage in inflate
934 - Change leave label to inf_leave in inflate.c and infback.c to avoid
936 - Remove inflate gzip decoding by default--only enable gzip decoding by
986 - New and improved inflate code
990 - Raw inflate no longer needs an extra dummy byte at end
992 than inflate, useful for file utilities (gzip, zip)
1026 - Document raw deflate and inflate
1032 - Note permitted values of flush parameter of inflate()
1034 - Add contrib/inflate86/ for x86 faster inflate
1036 - Add contrib/puff/ simple inflate for deflate format description
1043 - Avoid accesses before window for invalid distances with inflate window
1049 - fix "an inflate input buffer bug that shows up on rare but persistent
1099 - preinitialize the inflate tables for fixed codes, to make the code
1101 - some simplifications and slight speed-up to the inflate code (Mark)
1124 - do not return STREAM_END prematurely in inflate (John Bowler)
1125 - revert to the zlib 1.0.8 inflate to avoid the gcc 2.8.0 bug (Jeremy Buhler)
1142 - simplify the inflate code (Mark):
1146 . Simplify Z_FINISH check in inflate()
1207 - check Z_FINISH in inflate (thanks to Marc Schluper)
1274 - Fix inflate to terminate gracefully when fed corrupted or invalid data
1275 - Use const for rommable constants in inflate
1276 - Eliminate memory leaks on error conditions in inflate
1277 - Removed some vestigial code in inflate
1311 - fix inflate bug with empty stored block
1367 - initialize opaque in example.c, gzio.c, deflate.c and inflate.c
1423 - don't even use signed char in inflate (not portable enough)
1424 - fix inflate memory leak for segmented architectures
1432 - optimized inflate on stored blocks.
1457 - added fast inflate (inffast.c)
1472 - Added full inflate support.