Changeset 388 for python/vendor/current/Modules/zlib
- Timestamp:
- Mar 19, 2014, 11:11:30 AM (11 years ago)
- Location:
- python/vendor/current/Modules/zlib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/vendor/current/Modules/zlib/deflate.c
r2 r388 164 164 /* =========================================================================== 165 165 * Update a hash value with the given input byte 166 * IN assertion: all calls to toUPDATE_HASH are made with consecutive166 * IN assertion: all calls to UPDATE_HASH are made with consecutive 167 167 * input characters, so that a running hash key can be computed from the 168 168 * previous key instead of complete recalculation each time. … … 177 177 * If this file is compiled with -DFASTEST, the compression level is forced 178 178 * to 1, and no hash chains are maintained. 179 * IN assertion: all calls to toINSERT_STRING are made with consecutive179 * IN assertion: all calls to INSERT_STRING are made with consecutive 180 180 * input characters and the first MIN_MATCH bytes of str are valid 181 181 * (except for the last MIN_MATCH-1 bytes of the input file). -
python/vendor/current/Modules/zlib/zlib.h
r2 r388 765 765 if no more input was provided, Z_DATA_ERROR if no flush point has been found, 766 766 or Z_STREAM_ERROR if the stream structure was inconsistent. In the success 767 case, the application may save the current currentvalue of total_in which767 case, the application may save the current value of total_in which 768 768 indicates where valid compressed data was found. In the error case, the 769 769 application may repeatedly call inflateSync, providing more input each time,
Note:
See TracChangeset
for help on using the changeset viewer.