Lines Matching refs:deflate
5 - Fix deflate stored bug when pulling last block from window
6 - Permit immediate deflateParams changes before any deflate input
69 - Correct comment in deflate.h
218 - Assure that high-water mark initialization is always applied in deflate
219 - Add assertions to fill_window() in deflate.c to match comments
281 - Correct spelling error in deflate.h [Kohler]
292 - Avoid deflate sensitivity to volatile input data
508 - Remove compressBound() call in deflate.c to avoid linking compress.o
525 - Change NULL's to Z_NULL's in deflate.c and in comments in zlib.h
567 - Remove extraneous #define MIN_LOOKAHEAD in deflate.c (in deflate.h)
568 - Clear bytes after deflate lookahead to avoid use of uninitialized data
572 - Allow Z_BLOCK for deflate() to force a new block
616 - Set extra flags in gzip header in gzopen() like deflate() does
671 - Avoid some Visual C warnings in deflate.c
704 - Remove USE_DICT_HEAD in deflate.c (would mess up inflate if used)
709 - Fix compilation of deflate.c when both ASMV and FASTEST [Oberhumer]
715 - Replace structure assignments in deflate.c and inflate.c with zmemcpy to
725 - Add FAQ entry and comments in deflate.c on uninitialized memory access
732 - Use OS_CODE in deflate() default gzip header
752 - Add comment in zlib.h for Z_NO_FLUSH parameter to deflate()
913 - Change NO_GUNZIP compile option to NO_GZIP to cover deflate as well
939 - More typecasting in deflate.c to avoid warnings
945 - Update RFC URL in deflate.c and algorithm.txt [Mai]
994 externally generated deflate streams (e.g. in gzip files)
1000 - Permit setting dictionary for raw deflate (for parallel deflate)
1009 - Fix static const's in deflate.c, gzio.c, and zutil.[ch]
1026 - Document raw deflate and inflate
1036 - Add contrib/puff/ simple inflate for deflate format description
1116 - fix macros _tr_tally_* in deflate.h for debug mode (Glenn Randers-Pehrson)
1177 - avoid warnings in gzio.c and deflate.c (Andreas Kleinert)
1203 - Fix a deflate bug occurring only with compression level 0 (thanks to
1233 - use const for rommable constants in deflate
1281 - In very rare conditions, deflate(s, Z_FINISH) could fail to produce an EOF
1292 - return OK instead of BUF_ERROR if previous deflate call returned with
1310 - fix array overlay in deflate.c which sometimes caused bad compressed data
1338 - fixed deflate for 64-bit systems (detected on Cray)
1341 - always return Z_BUF_ERROR when deflate() has nothing to do
1352 - deflate is finally (?) fully deterministic (no matches beyond end of input)
1358 - initialize hash_head in deflate.c
1367 - initialize opaque in example.c, gzio.c, deflate.c and inflate.c
1394 - fix the final (:-) bug for deflate with flush (output was correct but
1403 - fix deflate with flush (could sometimes generate bad output)
1408 - For deflate with flush, flush even if no more input is provided.
1414 - avoid warning about (unused) pointer before start of array in deflate.c
1420 - make deflate deterministic
1440 - deflate(Z_FULL_FLUSH) now works even if output buffer too short
1448 - deflate(Z_FULL_FLUSH), inflateReset and inflateSync are now fully implemented
1458 - deflate(Z_FINISH) now returns Z_STREAM_END when done. Warning: this
1490 - do real compression in deflate.c. Z_PARTIAL_FLUSH is supported but