Age | Commit message (Expand) | Author |
2020-11-22 | Separate crc32 and crc32_combine tables so the crc32_combine tables are not i... | Nathan Moinvaziri |
2020-08-31 | Rename ZEXPORT and ZEXTERN for consistency. | Nathan Moinvaziri |
2020-08-31 | Rename ZLIB_INTERNAL to Z_INTERNAL for consistency. | Nathan Moinvaziri |
2020-08-31 | Rename ZLIB_REGISTER to Z_REGISTER for consistency. | Nathan Moinvaziri |
2020-08-27 | Rename table headers with tbl suffix. | Nathan Moinvaziri |
2020-08-14 | Style cleanup. | Mika Lindqvist |
2020-08-14 | Fix signature of crc32_combine(), crc32_combine64() and crc32_z() in compat m... | Mika Lindqvist |
2020-06-28 | Added ZLIB_REGISTER to disable register keyword for C++. | Nathan Moinvaziri |
2020-06-08 | For gzseek, gzoffset, gzopen, adler32_combine, crc32_combine and crc32_combin... | Nathan Moinvaziri |
2020-05-01 | Standardize fill_window implementations and abstract out slide_hash_neon for ... | Nathan Moinvaziri |
2020-03-17 | Remove cvs keywords | Pavel P |
2020-02-07 | Fixed formatting, 4 spaces for code intent, 2 spaces for preprocessor indent,... | Nathan Moinvaziri |
2019-11-26 | Compatibility fix for crc32() | Mika Lindqvist |
2019-09-20 | Add makecrct test and clean up makecrct.c code | Hans Kristian Rosbach |
2019-09-20 | Split crc table generating code (MAKECRCH) out into separate tool makecrct. | Hans Kristian Rosbach |
2019-08-06 | Rename gzendian to zendian since it is included in more than just the gzip li... | Nathan Moinvaziri |
2019-05-29 | Fix build when DYNAMIC_CRC_TABLE is defined. | Mika T. Lindqvist |
2019-01-31 | cleanup: move code from arch/x86/crc_pclmulqdq.c to crc32.c | Sebastian Pop |
2019-01-21 | Replace the UNROLL_LESS define with UNROLL_MORE, making UNROLL_LESS the default. | Hans Kristian Rosbach |
2018-12-08 | Add crc32_combine_gen() and crc32_combine_op() for fast combines. | Mark Adler |
2018-12-08 | Add tables for crc32_combine(), to speed it up by a factor of 200. | Mark Adler |
2018-03-22 | Move private defines from zconf.h and zconf-ng.h to zbuild.h | Mika Lindqvist |
2018-02-16 | wrap crc32 in functable (#145) | Daniel Black |
2018-01-31 | Adapt code to support PREFIX macros and update build scripts | Mika Lindqvist |
2018-01-31 | Add function prefix (zng_) to all exported functions to allow zlib-ng | Hans Kristian Rosbach |
2017-03-24 | Add initial support for AARCH64. | Mika Lindqvist |
2017-03-24 | Add support for ARM ACLE instructions. | Mika Lindqvist |
2017-02-13 | Replace remaining Z_NULL instances with NULL. | Mika Lindqvist |
2017-02-13 | Move instruction set specific crc32 code to arch directories. | Mika Lindqvist |
2017-02-09 | zlib 1.2.9 | Mark Adler |
2017-02-09 | Add crc32_z() and adler32_z() functions with size_t lengths. | Mark Adler |
2017-01-31 | Note the violation of the strict aliasing rule in crc32.c. | Mark Adler |
2017-01-31 | Avoid pre-decrement of pointer in big-endian CRC calculation. | Mark Adler |
2017-01-31 | Replace Z_NULL with NULL. Fix incorrect uses of NULL/Z_NULL. | Mika Lindqvist |
2016-04-28 | Fix endianness-detection code on Solaris 11. | Evan Nemerson |
2016-04-28 | Fix spelling of __DragonFly__ in crc32.c, found by @nemequ | Hans Kristian Rosbach |
2015-12-14 | Type cleanup. | Mika Lindqvist |
2015-11-25 | Fix compilation on BSD | Evan Nemerson |
2015-06-10 | Allow building on OS X | René J.V. Bertin |
2015-05-25 | Style cleanup for adler/crc code | Hans Kristian Rosbach |
2015-05-23 | Update remaining function prototypes to ANSI C standard | Hans Kristian Rosbach |
2015-05-17 | Kill Byte and Bytef | Daniel Axtens |
2015-05-13 | Fix unnecessary type casts. | Mika Lindqvist |
2015-05-13 | Kill z_crc_t | Daniel Axtens |
2015-05-13 | z_const -> const | Daniel Axtens |
2015-05-12 | Convert remaining K&R function declarations to ANSI-C declarations. | Hans Kristian Rosbach |
2015-05-12 | Minor cleanup of includefiles relating mostly to stdint.h | Hans Kristian Rosbach |
2015-05-12 | Combine CRC32_UNROLL_LESS and ADLER32_UNROLL_LESS into UNROLL_LESS | Hans Kristian Rosbach |
2015-05-11 | crc32: unsigned long -> uint32_t | Daniel Axtens |
2015-05-11 | crc32: local -> static | Daniel Axtens |