Lines Matching full:deflate
201 - Remove compressBound() call in deflate.c to avoid linking compress.o
218 - Change NULL's to Z_NULL's in deflate.c and in comments in zlib.h
260 - Remove extraneous #define MIN_LOOKAHEAD in deflate.c (in deflate.h)
261 - Clear bytes after deflate lookahead to avoid use of uninitialized data
265 - Allow Z_BLOCK for deflate() to force a new block
309 - Set extra flags in gzip header in gzopen() like deflate() does
364 - Avoid some Visual C warnings in deflate.c
397 - Remove USE_DICT_HEAD in deflate.c (would mess up inflate if used)
402 - Fix compilation of deflate.c when both ASMV and FASTEST [Oberhumer]
408 - Replace structure assignments in deflate.c and inflate.c with zmemcpy to
418 - Add FAQ entry and comments in deflate.c on uninitialized memory access
425 - Use OS_CODE in deflate() default gzip header
445 - Add comment in zlib.h for Z_NO_FLUSH parameter to deflate()
606 - Change NO_GUNZIP compile option to NO_GZIP to cover deflate as well
632 - More typecasting in deflate.c to avoid warnings
638 - Update RFC URL in deflate.c and algorithm.txt [Mai]
687 externally generated deflate streams (e.g. in gzip files)
693 - Permit setting dictionary for raw deflate (for parallel deflate)
702 - Fix static const's in deflate.c, gzio.c, and zutil.[ch]
719 - Document raw deflate and inflate
729 - Add contrib/puff/ simple inflate for deflate format description
809 - fix macros _tr_tally_* in deflate.h for debug mode (Glenn Randers-Pehrson)
870 - avoid warnings in gzio.c and deflate.c (Andreas Kleinert)
896 - Fix a deflate bug occurring only with compression level 0 (thanks to
926 - use const for rommable constants in deflate
974 - In very rare conditions, deflate(s, Z_FINISH) could fail to produce an EOF
985 - return OK instead of BUF_ERROR if previous deflate call returned with
1003 - fix array overlay in deflate.c which sometimes caused bad compressed data
1031 - fixed deflate for 64-bit systems (detected on Cray)
1034 - always return Z_BUF_ERROR when deflate() has nothing to do
1045 - deflate is finally (?) fully deterministic (no matches beyond end of input)
1051 - initialize hash_head in deflate.c
1060 - initialize opaque in example.c, gzio.c, deflate.c and inflate.c
1087 - fix the final (:-) bug for deflate with flush (output was correct but
1096 - fix deflate with flush (could sometimes generate bad output)
1101 - For deflate with flush, flush even if no more input is provided.
1107 - avoid warning about (unused) pointer before start of array in deflate.c
1113 - make deflate deterministic
1133 - deflate(Z_FULL_FLUSH) now works even if output buffer too short
1141 - deflate(Z_FULL_FLUSH), inflateReset and inflateSync are now fully implemented
1151 - deflate(Z_FINISH) now returns Z_STREAM_END when done. Warning: this
1183 - do real compression in deflate.c. Z_PARTIAL_FLUSH is supported but