summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2021-02-03Fix error in comment on the polynomial representation of a byte.Mark Adler
2020-11-22Separate crc32 and crc32_combine tables so the crc32_combine tables are not ↵Nathan Moinvaziri
included when not used if statically linking. Reduces code size by 4k.
2020-09-24Fixed tab indentation for inffixed_tbl.h.Nathan Moinvaziri
2020-08-31Rename ZLIB_INTERNAL to Z_INTERNAL for consistency.Nathan Moinvaziri
2020-08-27Renamed trees_p.h to trees.h.Nathan Moinvaziri
2020-08-27Rename table headers with tbl suffix.Nathan Moinvaziri
2020-08-15Fix inconsistent wildcards in CHOST canonicalization scriptNiLuJe
Should prevent mangling actually sane four-part CHOSTs, while not regressing #666
2020-07-17configure: move config.sub to tools subdirDan Kegel
2020-05-30Fixed casting warning from bi_reverse in maketrees.Nathan Moinvaziri
maketrees.c(93,58): warning C4244: '=': conversion from 'unsigned int' to 'uint16_ t', possible loss of data
2020-05-06Unify emitting of literals and match dist/lengths. Removed deflate quick ↵Nathan Moinvaziri
static tables, allowing for 32k window.
2020-03-09Attempt to run codecov again if it fails.Hans Kristian Rosbach
2020-02-07Fixed formatting, 4 spaces for code intent, 2 spaces for preprocessor ↵Nathan Moinvaziri
indent, initial function brace on the same line as definition, removed extraneous spaces and new lines.
2019-10-07Fixed use of uninitialized value state in makefixed. #437Nathan Moinvaziri
2019-09-20Add makecrct test and clean up makecrct.c codeHans Kristian Rosbach
Update crc32.h tables to match makecrct output.
2019-09-20Split crc table generating code (MAKECRCH) out into separate tool makecrct.Hans Kristian Rosbach
2019-09-20Add maketrees test and clean up maketrees.c codeHans Kristian Rosbach
2019-09-20Split maketrees out into a separate toolHans Kristian Rosbach
2019-08-08Remove BUILDFIXED and MAKEFIXED. (#375)Hans Kristian Rosbach
Remove BUILDFIXED support. Split out MAKEFIXED into a separate 'makefixed' util that is easy to use if we want to regenerate/verify inffixed.h.
2019-01-31cleanup: remove unused fileSebastian Pop
2017-02-13CMakeLists.txt: better checking for Intel intrinsics.René J.V. Bertin
The checks currently assume that instructions that build also execute. This is not necessarily true: building with -msse4 on an AMD CPU (a C60) that only has SSE4a leads to a crash in deflateInit2 when the compiler apparently uses an unsupported instruction to set s->hash_bits = memLevel + 7;