├── .gitattributes ├── .gitignore ├── BUILD.md ├── CHANGELOG ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── azure-pipelines.yml ├── bench ├── buggy_codecs.cpp ├── codecs.h ├── cpuid1.h ├── lz_codecs.cpp ├── lzbench.cpp ├── lzbench.h ├── misc_codecs.cpp ├── symmetric_codecs.cpp ├── threadpool.cpp ├── threadpool.h └── util.h ├── bwt ├── bzip2 │ ├── CHANGES │ ├── LICENSE │ ├── Makefile │ ├── Makefile-libbz2_so │ ├── README │ ├── README.COMPILATION.PROBLEMS │ ├── README.XML.STUFF │ ├── blocksort.c │ ├── bzdiff │ ├── bzgrep │ ├── bzip.css │ ├── bzip2.1.preformatted │ ├── bzip2.c │ ├── bzip2.txt │ ├── bzip2recover.c │ ├── bzlib.c │ ├── bzlib.h │ ├── bzlib_private.h │ ├── bzmore │ ├── bzmore.1 │ ├── compress.c │ ├── crctable.c │ ├── decompress.c │ ├── dlltest.c │ ├── dlltest.dsp │ ├── format.pl │ ├── huffman.c │ ├── libbz2.def │ ├── libbz2.dsp │ ├── makefile.msc │ ├── mk251.c │ ├── randtable.c │ ├── spewG.c │ └── unzcrash.c ├── bzip3 │ ├── .clang-format │ ├── .gitattributes │ ├── .github │ │ └── workflows │ │ │ ├── build.yml │ │ │ └── release.yml │ ├── .gitignore │ ├── 3rdparty │ │ └── libsais-LICENSE │ ├── CMakeLists.txt │ ├── LICENSE │ ├── Makefile.am │ ├── NEWS │ ├── PORTING.md │ ├── README.md │ ├── bootstrap.sh │ ├── build-aux │ │ ├── ax_build_date_epoch.m4 │ │ ├── ax_check_compile_flag.m4 │ │ ├── ax_progvar.m4 │ │ ├── ax_pthread.m4 │ │ ├── ax_subst_man_date.m4 │ │ └── git-version-gen │ ├── bunzip3 │ ├── bunzip3.1 │ ├── bz3cat │ ├── bz3cat.1 │ ├── bz3grep │ ├── bz3grep.1.in │ ├── bz3less │ ├── bz3less.1.in │ ├── bz3more │ ├── bz3more.1.in │ ├── bz3most │ ├── bz3most.1.in │ ├── bzip3.1.in │ ├── bzip3.pc.in │ ├── configure.ac │ ├── doc │ │ ├── bzip3_format.md │ │ └── overview.md │ ├── etc │ │ ├── BENCHMARKS.md │ │ ├── benchmark.png │ │ └── benchmark.svg │ ├── examples │ │ ├── fuzz-decode-block.c │ │ ├── fuzz-decompress.c │ │ ├── fuzz-round-trip.c │ │ ├── hl-api.c │ │ └── standard_test_files │ │ │ ├── 63_byte_file.bin │ │ │ ├── 65_byte_file.bin │ │ │ └── readme.txt │ ├── include │ │ ├── common.h │ │ ├── libbz3.h │ │ ├── libsais.h │ │ └── yarg.h │ └── src │ │ ├── libbz3.c │ │ └── main.c └── libbsc │ ├── AUTHORS │ ├── CHANGES │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README │ ├── VERSION │ ├── bsc.cpp │ └── libbsc │ ├── adler32 │ ├── adler32.cpp │ └── adler32.h │ ├── bwt │ ├── bwt.cpp │ ├── bwt.h │ ├── libcubwt │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── VERSION │ │ ├── libcubwt.cu │ │ └── libcubwt.cuh │ └── libsais │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── VERSION │ │ ├── libsais.c │ │ └── libsais.h │ ├── coder │ ├── coder.cpp │ ├── coder.h │ ├── common │ │ ├── predictor.h │ │ ├── rangecoder.h │ │ └── tables.h │ └── qlfc │ │ ├── qlfc.cpp │ │ ├── qlfc.h │ │ ├── qlfc_model.cpp │ │ └── qlfc_model.h │ ├── filters.h │ ├── filters │ ├── detectors.cpp │ ├── preprocessing.cpp │ └── tables.h │ ├── libbsc.h │ ├── libbsc │ └── libbsc.cpp │ ├── lzp │ ├── lzp.cpp │ └── lzp.h │ ├── platform │ ├── platform.cpp │ └── platform.h │ └── st │ ├── st.cpp │ ├── st.cu │ ├── st.cuh │ └── st.h ├── doc ├── licenses │ ├── GPL-2.0.txt │ └── GPL-3.txt ├── lzbench.7.txt ├── lzbench18_sorted.md ├── lzbench19_sorted.md └── lzbench20_sorted.md ├── lz ├── brieflz │ ├── LICENSE │ ├── brieflz.c │ ├── brieflz.h │ ├── brieflz_btparse.h │ ├── brieflz_hashbucket.h │ ├── brieflz_lazy.h │ ├── brieflz_leparse.h │ ├── depack.c │ └── depacks.c ├── brotli │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README │ ├── common │ │ ├── constants.c │ │ ├── constants.h │ │ ├── context.c │ │ ├── context.h │ │ ├── dictionary.c │ │ ├── dictionary.h │ │ ├── dictionary_inc.h │ │ ├── platform.c │ │ ├── platform.h │ │ ├── shared_dictionary.c │ │ ├── shared_dictionary_internal.h │ │ ├── static_init.h │ │ ├── transform.c │ │ ├── transform.h │ │ └── version.h │ ├── dec │ │ ├── bit_reader.c │ │ ├── bit_reader.h │ │ ├── decode.c │ │ ├── huffman.c │ │ ├── huffman.h │ │ ├── prefix.c │ │ ├── prefix.h │ │ ├── prefix_inc.h │ │ ├── state.c │ │ ├── state.h │ │ ├── static_init.c │ │ └── static_init.h │ ├── enc │ │ ├── backward_references.c │ │ ├── backward_references.h │ │ ├── backward_references_hq.c │ │ ├── backward_references_hq.h │ │ ├── backward_references_inc.h │ │ ├── bit_cost.c │ │ ├── bit_cost.h │ │ ├── bit_cost_inc.h │ │ ├── block_encoder_inc.h │ │ ├── block_splitter.c │ │ ├── block_splitter.h │ │ ├── block_splitter_inc.h │ │ ├── brotli_bit_stream.c │ │ ├── brotli_bit_stream.h │ │ ├── cluster.c │ │ ├── cluster.h │ │ ├── cluster_inc.h │ │ ├── command.c │ │ ├── command.h │ │ ├── compound_dictionary.c │ │ ├── compound_dictionary.h │ │ ├── compress_fragment.c │ │ ├── compress_fragment.h │ │ ├── compress_fragment_two_pass.c │ │ ├── compress_fragment_two_pass.h │ │ ├── dictionary_hash.c │ │ ├── dictionary_hash.h │ │ ├── dictionary_hash_inc.h │ │ ├── encode.c │ │ ├── encoder_dict.c │ │ ├── encoder_dict.h │ │ ├── entropy_encode.c │ │ ├── entropy_encode.h │ │ ├── entropy_encode_static.h │ │ ├── fast_log.c │ │ ├── fast_log.h │ │ ├── find_match_length.h │ │ ├── hash.h │ │ ├── hash_base.h │ │ ├── hash_composite_inc.h │ │ ├── hash_forgetful_chain_inc.h │ │ ├── hash_longest_match64_inc.h │ │ ├── hash_longest_match64_simd_inc.h │ │ ├── hash_longest_match_inc.h │ │ ├── hash_longest_match_quickly_inc.h │ │ ├── hash_longest_match_simd_inc.h │ │ ├── hash_rolling_inc.h │ │ ├── hash_to_binary_tree_inc.h │ │ ├── histogram.c │ │ ├── histogram.h │ │ ├── histogram_inc.h │ │ ├── literal_cost.c │ │ ├── literal_cost.h │ │ ├── matching_tag_mask.h │ │ ├── memory.c │ │ ├── memory.h │ │ ├── metablock.c │ │ ├── metablock.h │ │ ├── metablock_inc.h │ │ ├── params.h │ │ ├── prefix.h │ │ ├── quality.h │ │ ├── ringbuffer.h │ │ ├── state.h │ │ ├── static_dict.c │ │ ├── static_dict.h │ │ ├── static_dict_lut.c │ │ ├── static_dict_lut.h │ │ ├── static_dict_lut_inc.h │ │ ├── static_init.c │ │ ├── static_init.h │ │ ├── static_init_lazy.cc │ │ ├── utf8_util.c │ │ ├── utf8_util.h │ │ └── write_bits.h │ ├── include │ │ └── brotli │ │ │ ├── decode.h │ │ │ ├── encode.h │ │ │ ├── port.h │ │ │ ├── shared_dictionary.h │ │ │ └── types.h │ └── tools │ │ ├── brotli.c │ │ └── brotli.md ├── crush │ ├── crush.cpp │ └── crush.hpp ├── fast-lzma2 │ ├── COPYING │ ├── LICENSE │ ├── Makefile │ ├── atomic.h │ ├── compiler.h │ ├── count.h │ ├── data_block.h │ ├── dict_buffer.c │ ├── dict_buffer.h │ ├── fast-lzma2.h │ ├── fastpos_table.h │ ├── fl2_common.c │ ├── fl2_compress.c │ ├── fl2_compress_internal.h │ ├── fl2_decompress.c │ ├── fl2_errors.h │ ├── fl2_internal.h │ ├── fl2_pool.c │ ├── fl2_pool.h │ ├── fl2_threading.c │ ├── fl2_threading.h │ ├── lzma2_dec.c │ ├── lzma2_dec.h │ ├── lzma2_enc.c │ ├── lzma2_enc.h │ ├── lzma_dec_x86_64.S │ ├── lzma_dec_x86_64.asm │ ├── mem.h │ ├── platform.h │ ├── radix_bitpack.c │ ├── radix_engine.h │ ├── radix_get.h │ ├── radix_internal.h │ ├── radix_mf.c │ ├── radix_mf.h │ ├── radix_struct.c │ ├── range_enc.c │ ├── range_enc.h │ ├── util.c │ └── util.h ├── fastlz │ ├── fastlz.c │ └── fastlz.h ├── gipfeli │ ├── COPYING │ ├── Makefile │ ├── README │ ├── compression.h │ ├── config.h │ ├── decompress.cc │ ├── entropy.cc │ ├── entropy.h │ ├── entropy_code_builder.cc │ ├── entropy_code_builder.h │ ├── enum.h │ ├── find_match_length.h │ ├── gipfeli-internal.cc │ ├── gipfeli-internal.h │ ├── gipfeli.h │ ├── gipfeli_test.cc │ ├── lz77.cc │ ├── lz77.h │ ├── read_bits.h │ ├── sinksource.h │ ├── stream.h │ └── stubs-internal.h ├── libcsc │ ├── LICENSE │ ├── README.md │ ├── Types.h │ ├── csc.cpp │ ├── csc_analyzer.cpp │ ├── csc_analyzer.h │ ├── csc_coder.cpp │ ├── csc_coder.h │ ├── csc_common.h │ ├── csc_dec.cpp │ ├── csc_dec.h │ ├── csc_default_alloc.cpp │ ├── csc_default_alloc.h │ ├── csc_enc.cpp │ ├── csc_enc.h │ ├── csc_encoder_main.cpp │ ├── csc_encoder_main.h │ ├── csc_filters.cpp │ ├── csc_filters.h │ ├── csc_lz.cpp │ ├── csc_lz.h │ ├── csc_memio.cpp │ ├── csc_memio.h │ ├── csc_mf.cpp │ ├── csc_mf.h │ ├── csc_model.cpp │ ├── csc_model.h │ ├── csc_profiler.cpp │ ├── csc_profiler.h │ ├── csc_typedef.h │ └── decomp.cpp ├── libdeflate │ ├── .cirrus.yml │ ├── .github │ │ └── workflows │ │ │ └── ci.yml │ ├── .gitignore │ ├── CMakeLists.txt │ ├── COPYING │ ├── NEWS.md │ ├── README.md │ ├── common_defs.h │ ├── lib │ │ ├── adler32.c │ │ ├── arm │ │ │ ├── adler32_impl.h │ │ │ ├── cpu_features.c │ │ │ ├── cpu_features.h │ │ │ ├── crc32_impl.h │ │ │ ├── crc32_pmull_helpers.h │ │ │ ├── crc32_pmull_wide.h │ │ │ └── matchfinder_impl.h │ │ ├── bt_matchfinder.h │ │ ├── cpu_features_common.h │ │ ├── crc32.c │ │ ├── crc32_multipliers.h │ │ ├── crc32_tables.h │ │ ├── decompress_template.h │ │ ├── deflate_compress.c │ │ ├── deflate_compress.h │ │ ├── deflate_constants.h │ │ ├── deflate_decompress.c │ │ ├── gzip_compress.c │ │ ├── gzip_constants.h │ │ ├── gzip_decompress.c │ │ ├── hc_matchfinder.h │ │ ├── ht_matchfinder.h │ │ ├── lib_common.h │ │ ├── matchfinder_common.h │ │ ├── riscv │ │ │ └── matchfinder_impl.h │ │ ├── utils.c │ │ ├── x86 │ │ │ ├── adler32_impl.h │ │ │ ├── adler32_template.h │ │ │ ├── cpu_features.c │ │ │ ├── cpu_features.h │ │ │ ├── crc32_impl.h │ │ │ ├── crc32_pclmul_template.h │ │ │ ├── decompress_impl.h │ │ │ └── matchfinder_impl.h │ │ ├── zlib_compress.c │ │ ├── zlib_constants.h │ │ └── zlib_decompress.c │ ├── libdeflate-config.cmake.in │ ├── libdeflate.h │ ├── libdeflate.pc.in │ ├── programs │ │ ├── CMakeLists.txt │ │ ├── benchmark.c │ │ ├── checksum.c │ │ ├── config.h.in │ │ ├── gzip.c │ │ ├── prog_util.c │ │ ├── prog_util.h │ │ ├── test_checksums.c │ │ ├── test_custom_malloc.c │ │ ├── test_incomplete_codes.c │ │ ├── test_invalid_streams.c │ │ ├── test_litrunlen_overflow.c │ │ ├── test_overread.c │ │ ├── test_slow_decompression.c │ │ ├── test_trailing_bytes.c │ │ ├── test_util.c │ │ ├── test_util.h │ │ └── tgetopt.c │ └── scripts │ │ ├── android_build.sh │ │ ├── android_tests.sh │ │ ├── benchmark.sh │ │ ├── checksum.sh │ │ ├── checksum_benchmarks.sh │ │ ├── cmake-helper.sh │ │ ├── deflate_benchmarks.sh │ │ ├── exec_tests.sh │ │ ├── gen-crc32-consts.py │ │ ├── gen-release-archives.sh │ │ ├── gen_bitreverse_tab.py │ │ ├── gen_default_litlen_costs.py │ │ ├── gen_offset_slot_map.py │ │ ├── gzip_tests.sh │ │ ├── libFuzzer │ │ ├── .gitignore │ │ ├── deflate_compress │ │ │ ├── corpus │ │ │ │ └── 0 │ │ │ └── fuzz.c │ │ ├── deflate_decompress │ │ │ ├── corpus │ │ │ │ └── 0 │ │ │ └── fuzz.c │ │ ├── fuzz.sh │ │ ├── gzip_decompress │ │ │ ├── corpus │ │ │ │ └── 0 │ │ │ └── fuzz.c │ │ └── zlib_decompress │ │ │ ├── corpus │ │ │ └── 0 │ │ │ └── fuzz.c │ │ ├── run_tests.sh │ │ ├── toolchain-i686-w64-mingw32.cmake │ │ └── toolchain-x86_64-w64-mingw32.cmake ├── liblzg │ ├── checksum.c │ ├── decode.c │ ├── encode.c │ ├── internal.h │ ├── lzg.h │ └── version.c ├── libzling │ ├── libzling.cpp │ ├── libzling.h │ ├── libzling_debug.cpp │ ├── libzling_debug.h │ ├── libzling_huffman.cpp │ ├── libzling_huffman.h │ ├── libzling_inc.h │ ├── libzling_lz.cpp │ ├── libzling_lz.h │ ├── libzling_utils.cpp │ ├── libzling_utils.h │ ├── msinttypes │ │ ├── changelog.txt │ │ ├── inttypes.h │ │ └── stdint.h │ └── tables │ │ ├── gen.py │ │ ├── table_matchidx_base.inc │ │ ├── table_matchidx_blen.inc │ │ ├── table_matchidx_code.inc │ │ ├── table_mtfinit.inc │ │ └── table_mtfnext.inc ├── lizard │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── dll │ │ └── liblizard.def │ ├── entropy │ │ ├── README.md │ │ ├── bitstream.h │ │ ├── compiler.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── entropy_common.c │ │ ├── error_private.h │ │ ├── error_public.h │ │ ├── fse.h │ │ ├── fse_compress.c │ │ ├── fse_decompress.c │ │ ├── hist.c │ │ ├── hist.h │ │ ├── huf.h │ │ ├── huf_compress.c │ │ ├── huf_decompress.c │ │ └── mem.h │ ├── liblizard.pc.in │ ├── lizard_common.h │ ├── lizard_compress.c │ ├── lizard_compress.h │ ├── lizard_compress_liz.h │ ├── lizard_compress_lz4.h │ ├── lizard_decompress.c │ ├── lizard_decompress.h │ ├── lizard_decompress_liz.h │ ├── lizard_decompress_lz4.h │ ├── lizard_frame.c │ ├── lizard_frame.h │ ├── lizard_frame_static.h │ ├── lizard_parser_fast.h │ ├── lizard_parser_fastbig.h │ ├── lizard_parser_fastsmall.h │ ├── lizard_parser_hashchain.h │ ├── lizard_parser_lowestprice.h │ ├── lizard_parser_nochain.h │ ├── lizard_parser_optimal.h │ ├── lizard_parser_pricefast.h │ └── xxhash │ │ ├── xxhash.c │ │ └── xxhash.h ├── lz4 │ ├── .circleci │ │ ├── config.yml │ │ └── images │ │ │ └── primary │ │ │ └── Dockerfile │ ├── .cirrus.yml │ ├── .clang-format │ ├── .gitattributes │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ │ ├── dependabot.yaml │ │ └── workflows │ │ │ ├── README.md │ │ │ ├── ci.yml │ │ │ └── scorecard.yml │ ├── .gitignore │ ├── CODING_STYLE │ ├── INSTALL │ ├── LICENSE │ ├── Makefile │ ├── Makefile.inc │ ├── NEWS │ ├── README.md │ ├── SECURITY.md │ ├── appveyor.yml │ ├── build │ │ ├── .gitignore │ │ ├── README.md │ │ ├── VS2022 │ │ │ ├── _build.bat │ │ │ ├── _setup.bat │ │ │ ├── _test.bat │ │ │ ├── build-and-test-win32-debug.bat │ │ │ ├── build-and-test-win32-release.bat │ │ │ ├── build-and-test-x64-debug.bat │ │ │ ├── build-and-test-x64-release.bat │ │ │ ├── datagen │ │ │ │ └── datagen.vcxproj │ │ │ ├── frametest │ │ │ │ └── frametest.vcxproj │ │ │ ├── fullbench-dll │ │ │ │ └── fullbench-dll.vcxproj │ │ │ ├── fullbench │ │ │ │ └── fullbench.vcxproj │ │ │ ├── fuzzer │ │ │ │ └── fuzzer.vcxproj │ │ │ ├── liblz4-dll │ │ │ │ ├── liblz4-dll.rc │ │ │ │ └── liblz4-dll.vcxproj │ │ │ ├── liblz4 │ │ │ │ └── liblz4.vcxproj │ │ │ ├── lz4.sln │ │ │ └── lz4 │ │ │ │ ├── lz4.rc │ │ │ │ └── lz4.vcxproj │ │ ├── cmake │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ └── lz4Config.cmake.in │ │ ├── meson │ │ │ ├── GetLz4LibraryVersion.py │ │ │ ├── README.md │ │ │ ├── meson.build │ │ │ ├── meson │ │ │ │ ├── contrib │ │ │ │ │ ├── gen_manual │ │ │ │ │ │ └── meson.build │ │ │ │ │ └── meson.build │ │ │ │ ├── examples │ │ │ │ │ └── meson.build │ │ │ │ ├── lib │ │ │ │ │ └── meson.build │ │ │ │ ├── meson.build │ │ │ │ ├── ossfuzz │ │ │ │ │ └── meson.build │ │ │ │ ├── programs │ │ │ │ │ └── meson.build │ │ │ │ └── tests │ │ │ │ │ └── meson.build │ │ │ └── meson_options.txt │ │ └── visual │ │ │ ├── README.md │ │ │ ├── generate_solution.cmd │ │ │ ├── generate_vs2015.cmd │ │ │ ├── generate_vs2017.cmd │ │ │ ├── generate_vs2019.cmd │ │ │ └── generate_vs2022.cmd │ ├── contrib │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── dirs │ │ │ ├── docs │ │ │ ├── liblz4-dev.install │ │ │ ├── liblz4.install │ │ │ └── rules │ │ ├── djgpp │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ └── README.MD │ │ ├── gen_manual │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── gen-lz4-manual.sh │ │ │ └── gen_manual.cpp │ │ └── snap │ │ │ ├── README.md │ │ │ └── snapcraft.yaml │ ├── doc │ │ ├── lz4_Block_format.md │ │ ├── lz4_Frame_format.md │ │ ├── lz4_manual.html │ │ └── lz4frame_manual.html │ ├── examples │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README.md │ │ ├── bench_functions.c │ │ ├── blockStreaming_doubleBuffer.c │ │ ├── blockStreaming_doubleBuffer.md │ │ ├── blockStreaming_lineByLine.c │ │ ├── blockStreaming_lineByLine.md │ │ ├── blockStreaming_ringBuffer.c │ │ ├── dictionaryRandomAccess.c │ │ ├── dictionaryRandomAccess.md │ │ ├── fileCompress.c │ │ ├── frameCompress.c │ │ ├── print_version.c │ │ ├── simple_buffer.c │ │ ├── streamingHC_ringBuffer.c │ │ └── streaming_api_basics.md │ ├── lib │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── dll │ │ │ └── example │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── fullbench-dll.sln │ │ │ │ └── fullbench-dll.vcxproj │ │ ├── liblz4-dll.rc.in │ │ ├── liblz4.pc.in │ │ ├── lz4.c │ │ ├── lz4.h │ │ ├── lz4file.c │ │ ├── lz4file.h │ │ ├── lz4frame.c │ │ ├── lz4frame.h │ │ ├── lz4frame_static.h │ │ ├── lz4hc.c │ │ ├── lz4hc.h │ │ ├── xxhash.c │ │ └── xxhash.h │ ├── ossfuzz │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── compress_frame_fuzzer.c │ │ ├── compress_fuzzer.c │ │ ├── compress_hc_fuzzer.c │ │ ├── decompress_frame_fuzzer.c │ │ ├── decompress_fuzzer.c │ │ ├── fuzz.h │ │ ├── fuzz_data_producer.c │ │ ├── fuzz_data_producer.h │ │ ├── fuzz_helpers.h │ │ ├── lz4_helpers.c │ │ ├── lz4_helpers.h │ │ ├── ossfuzz.sh │ │ ├── round_trip_frame_fuzzer.c │ │ ├── round_trip_frame_uncompressed_fuzzer.c │ │ ├── round_trip_fuzzer.c │ │ ├── round_trip_hc_fuzzer.c │ │ ├── round_trip_stream_fuzzer.c │ │ ├── standaloneengine.c │ │ └── travisoss.sh │ ├── programs │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README.md │ │ ├── bench.c │ │ ├── bench.h │ │ ├── lorem.c │ │ ├── lorem.h │ │ ├── lz4-exe.rc.in │ │ ├── lz4.1 │ │ ├── lz4.1.md │ │ ├── lz4cli.c │ │ ├── lz4conf.h │ │ ├── lz4io.c │ │ ├── lz4io.h │ │ ├── platform.h │ │ ├── threadpool.c │ │ ├── threadpool.h │ │ ├── timefn.c │ │ ├── timefn.h │ │ ├── util.c │ │ └── util.h │ └── tests │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README.md │ │ ├── abiTest.c │ │ ├── checkFrame.c │ │ ├── checkTag.c │ │ ├── check_liblz4_version.sh │ │ ├── cmake │ │ └── CMakeLists.txt │ │ ├── datagen.c │ │ ├── datagen.h │ │ ├── datagencli.c │ │ ├── decompress-partial-usingDict.c │ │ ├── decompress-partial.c │ │ ├── frametest.c │ │ ├── freestanding.c │ │ ├── fullbench.c │ │ ├── fuzzer.c │ │ ├── goldenSamples │ │ └── skip.bin │ │ ├── loremOut.c │ │ ├── loremOut.h │ │ ├── roundTripTest.c │ │ ├── test-lz4-abi.py │ │ ├── test-lz4-basic.sh │ │ ├── test-lz4-contentSize.sh │ │ ├── test-lz4-dict.sh │ │ ├── test-lz4-fast-hugefile.sh │ │ ├── test-lz4-frame-concatenation.sh │ │ ├── test-lz4-list.py │ │ ├── test-lz4-multiple-legacy.sh │ │ ├── test-lz4-multiple.sh │ │ ├── test-lz4-opt-parser.sh │ │ ├── test-lz4-skippable.sh │ │ ├── test-lz4-sparse.sh │ │ ├── test-lz4-speed.py │ │ ├── test-lz4-testmode.sh │ │ ├── test-lz4-versions.py │ │ ├── test-lz4hc-hugefile.sh │ │ ├── test_custom_block_sizes.sh │ │ ├── test_install.sh │ │ └── unicode_lint.sh ├── lzav │ ├── LICENSE │ ├── README.md │ └── lzav.h ├── lzf │ ├── lzf.h │ ├── lzfP.h │ ├── lzf_c_ultra.c │ ├── lzf_c_very.c │ └── lzf_d.c ├── lzfse │ ├── LICENSE │ ├── lzfse.h │ ├── lzfse_decode.c │ ├── lzfse_decode_base.c │ ├── lzfse_encode.c │ ├── lzfse_encode_base.c │ ├── lzfse_encode_tables.h │ ├── lzfse_fse.c │ ├── lzfse_fse.h │ ├── lzfse_internal.h │ ├── lzfse_tunables.h │ ├── lzvn.h │ ├── lzvn_decode.c │ ├── lzvn_decode_base.c │ ├── lzvn_decode_base.h │ ├── lzvn_encode_base.c │ └── lzvn_encode_base.h ├── lzham │ ├── include │ │ ├── lzham.h │ │ ├── lzham_dynamic_lib.h │ │ ├── lzham_exports.inc │ │ ├── lzham_static_lib.h │ │ └── zlib.h │ ├── lzhamcomp │ │ ├── CMakeLists.txt │ │ ├── lzham_comp.h │ │ ├── lzham_lzbase.cpp │ │ ├── lzham_lzbase.h │ │ ├── lzham_lzcomp.cpp │ │ ├── lzham_lzcomp_internal.cpp │ │ ├── lzham_lzcomp_internal.h │ │ ├── lzham_lzcomp_state.cpp │ │ ├── lzham_match_accel.cpp │ │ ├── lzham_match_accel.h │ │ ├── lzham_null_threading.h │ │ ├── lzham_pthreads_threading.cpp │ │ ├── lzham_pthreads_threading.h │ │ ├── lzham_threading.h │ │ ├── lzham_win32_threading.cpp │ │ ├── lzham_win32_threading.h │ │ └── lzhamcomp.vcxproj │ ├── lzhamdecomp │ │ ├── CMakeLists.txt │ │ ├── lzham_assert.cpp │ │ ├── lzham_assert.h │ │ ├── lzham_checksum.cpp │ │ ├── lzham_checksum.h │ │ ├── lzham_config.h │ │ ├── lzham_core.h │ │ ├── lzham_decomp.h │ │ ├── lzham_helpers.h │ │ ├── lzham_huffman_codes.cpp │ │ ├── lzham_huffman_codes.h │ │ ├── lzham_lzdecomp.cpp │ │ ├── lzham_lzdecompbase.cpp │ │ ├── lzham_lzdecompbase.h │ │ ├── lzham_math.h │ │ ├── lzham_mem.cpp │ │ ├── lzham_mem.h │ │ ├── lzham_platform.cpp │ │ ├── lzham_platform.h │ │ ├── lzham_prefix_coding.cpp │ │ ├── lzham_prefix_coding.h │ │ ├── lzham_symbol_codec.cpp │ │ ├── lzham_symbol_codec.h │ │ ├── lzham_timer.cpp │ │ ├── lzham_timer.h │ │ ├── lzham_traits.h │ │ ├── lzham_types.h │ │ ├── lzham_utils.h │ │ ├── lzham_vector.cpp │ │ ├── lzham_vector.h │ │ └── lzhamdecomp.vcxproj │ └── lzhamlib │ │ ├── lzham_lib.cpp │ │ └── lzhamlib.vcxproj ├── lzjb │ ├── lzjb2010.c │ └── lzjb2010.h ├── lzlib │ ├── AUTHORS │ ├── COPYING │ ├── COPYING.GPL │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── bbexample.c │ ├── carg_parser.c │ ├── carg_parser.h │ ├── cbuffer.c │ ├── configure │ ├── decoder.c │ ├── decoder.h │ ├── doc │ │ ├── lzlib.info │ │ ├── lzlib.texi │ │ └── minilzip.1 │ ├── encoder.c │ ├── encoder.h │ ├── encoder_base.c │ ├── encoder_base.h │ ├── fast_encoder.c │ ├── fast_encoder.h │ ├── ffexample.c │ ├── lzcheck.c │ ├── lzip.h │ ├── lzlib.c │ ├── lzlib.h │ ├── minilzip.c │ └── testsuite │ │ ├── check.sh │ │ ├── fox.lz │ │ ├── fox_bcrc.lz │ │ ├── fox_crc0.lz │ │ ├── fox_das46.lz │ │ ├── fox_de20.lz │ │ ├── fox_lf │ │ ├── fox_mes81.lz │ │ ├── fox_nz.lz │ │ ├── fox_s11.lz │ │ ├── fox_v2.lz │ │ ├── test.txt │ │ ├── test.txt.lz │ │ └── test_sync.lz ├── lzmat │ ├── lzmat.h │ ├── lzmat_dec.c │ └── lzmat_enc.c ├── lzo │ ├── compr1b.h │ ├── compr1c.h │ ├── config1.h │ ├── config1a.h │ ├── config1b.h │ ├── config1c.h │ ├── config1f.h │ ├── config1x.h │ ├── config1y.h │ ├── config1z.h │ ├── config2a.h │ ├── lzo1.c │ ├── lzo1.h │ ├── lzo1_99.c │ ├── lzo1_cm.ch │ ├── lzo1_d.ch │ ├── lzo1a.c │ ├── lzo1a.h │ ├── lzo1a_99.c │ ├── lzo1a_cm.ch │ ├── lzo1a_cr.ch │ ├── lzo1a_de.h │ ├── lzo1b.h │ ├── lzo1b_1.c │ ├── lzo1b_2.c │ ├── lzo1b_3.c │ ├── lzo1b_4.c │ ├── lzo1b_5.c │ ├── lzo1b_6.c │ ├── lzo1b_7.c │ ├── lzo1b_8.c │ ├── lzo1b_9.c │ ├── lzo1b_99.c │ ├── lzo1b_9x.c │ ├── lzo1b_c.ch │ ├── lzo1b_cc.c │ ├── lzo1b_cc.h │ ├── lzo1b_cm.ch │ ├── lzo1b_cr.ch │ ├── lzo1b_d.ch │ ├── lzo1b_d1.c │ ├── lzo1b_d2.c │ ├── lzo1b_de.h │ ├── lzo1b_r.ch │ ├── lzo1b_rr.c │ ├── lzo1b_sm.ch │ ├── lzo1b_tm.ch │ ├── lzo1b_xx.c │ ├── lzo1c.h │ ├── lzo1c_1.c │ ├── lzo1c_2.c │ ├── lzo1c_3.c │ ├── lzo1c_4.c │ ├── lzo1c_5.c │ ├── lzo1c_6.c │ ├── lzo1c_7.c │ ├── lzo1c_8.c │ ├── lzo1c_9.c │ ├── lzo1c_99.c │ ├── lzo1c_9x.c │ ├── lzo1c_cc.c │ ├── lzo1c_cc.h │ ├── lzo1c_d1.c │ ├── lzo1c_d2.c │ ├── lzo1c_rr.c │ ├── lzo1c_xx.c │ ├── lzo1f.h │ ├── lzo1f_1.c │ ├── lzo1f_9x.c │ ├── lzo1f_d.ch │ ├── lzo1f_d1.c │ ├── lzo1f_d2.c │ ├── lzo1x.h │ ├── lzo1x_1.c │ ├── lzo1x_1k.c │ ├── lzo1x_1l.c │ ├── lzo1x_1o.c │ ├── lzo1x_9x.c │ ├── lzo1x_c.ch │ ├── lzo1x_d.ch │ ├── lzo1x_d1.c │ ├── lzo1x_d2.c │ ├── lzo1x_d3.c │ ├── lzo1x_o.c │ ├── lzo1x_oo.ch │ ├── lzo1y.h │ ├── lzo1y_1.c │ ├── lzo1y_9x.c │ ├── lzo1y_d1.c │ ├── lzo1y_d2.c │ ├── lzo1y_d3.c │ ├── lzo1y_o.c │ ├── lzo1z.h │ ├── lzo1z_9x.c │ ├── lzo1z_d1.c │ ├── lzo1z_d2.c │ ├── lzo1z_d3.c │ ├── lzo2a.h │ ├── lzo2a_9x.c │ ├── lzo2a_d.ch │ ├── lzo2a_d1.c │ ├── lzo2a_d2.c │ ├── lzo_asm.h │ ├── lzo_conf.h │ ├── lzo_crc.c │ ├── lzo_dict.h │ ├── lzo_dll.ch │ ├── lzo_func.h │ ├── lzo_init.c │ ├── lzo_mchw.ch │ ├── lzo_ptr.c │ ├── lzo_ptr.h │ ├── lzo_str.c │ ├── lzo_supp.h │ ├── lzo_swd.ch │ ├── lzo_util.c │ ├── lzoconf.h │ ├── lzodefs.h │ ├── lzoutil.h │ ├── stats1a.h │ ├── stats1b.h │ └── stats1c.h ├── lzrw │ ├── lzrw.h │ ├── lzrw1-a.c │ ├── lzrw1.c │ ├── lzrw2.c │ ├── lzrw3-a.c │ └── lzrw3.c ├── lzsse │ ├── LICENSE │ ├── README.md │ ├── lzsse2 │ │ ├── lzsse2.cpp │ │ ├── lzsse2.h │ │ └── lzsse2_platform.h │ ├── lzsse4 │ │ ├── lzsse4.cpp │ │ ├── lzsse4.h │ │ └── lzsse4_platform.h │ └── lzsse8 │ │ ├── lzsse8.cpp │ │ ├── lzsse8.h │ │ └── lzsse8_platform.h ├── memlz │ └── memlz.h ├── quicklz │ ├── quicklz151b7.c │ └── quicklz151b7.h ├── slz │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── VERSION │ ├── src │ │ ├── slz.c │ │ ├── slz.h │ │ ├── tables.h │ │ ├── zdec.c │ │ └── zenc.c │ ├── tests │ │ ├── daniels.html │ │ ├── index.html │ │ └── noncomp.bin │ └── tools │ │ ├── dump_len.c │ │ ├── mkcrc.sh │ │ ├── mkfhdist.sh │ │ ├── mkhuff.sh │ │ └── mklen.sh ├── snappy │ ├── .bazelrc │ ├── .github │ │ └── workflows │ │ │ └── build.yml │ ├── .gitignore │ ├── .gitmodules │ ├── AUTHORS │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── MODULE.bazel │ ├── NEWS │ ├── README.md │ ├── WORKSPACE │ ├── WORKSPACE.bzlmod │ ├── cmake │ │ ├── SnappyConfig.cmake.in │ │ └── config.h.in │ ├── docs │ │ └── README.md │ ├── format_description.txt │ ├── framing_format.txt │ ├── snappy-c.cc │ ├── snappy-c.h │ ├── snappy-internal.h │ ├── snappy-sinksource.cc │ ├── snappy-sinksource.h │ ├── snappy-stubs-internal.cc │ ├── snappy-stubs-internal.h │ ├── snappy-stubs-public.h │ ├── snappy-stubs-public.h.in │ ├── snappy-test.cc │ ├── snappy-test.h │ ├── snappy.cc │ ├── snappy.h │ ├── snappy_benchmark.cc │ ├── snappy_compress_fuzzer.cc │ ├── snappy_test_data.cc │ ├── snappy_test_data.h │ ├── snappy_test_tool.cc │ ├── snappy_uncompress_fuzzer.cc │ └── snappy_unittest.cc ├── tamp │ ├── LICENSE │ ├── README.md │ ├── common.c │ ├── common.h │ ├── compressor.c │ ├── compressor.h │ ├── decompressor.c │ └── decompressor.h ├── tornado │ ├── Common.cpp │ ├── Common.h │ ├── Compression.h │ ├── DataTables.cpp │ ├── EntropyCoder.cpp │ ├── LZ77_Coder.cpp │ ├── MatchFinder.cpp │ ├── OptimalParsing.cpp │ ├── Tornado.cpp │ ├── license.txt │ ├── main.cpp │ ├── tor_test.cpp │ └── tor_test.h ├── ucl │ ├── acc │ │ ├── ACC_LICENSE │ │ ├── acc.h │ │ ├── acc_arch.h │ │ ├── acc_auto.h │ │ ├── acc_cc.h │ │ ├── acc_chk.ch │ │ ├── acc_chkr.ch │ │ ├── acc_cxx.h │ │ ├── acc_defs.h │ │ ├── acc_incd.h │ │ ├── acc_ince.h │ │ ├── acc_inci.h │ │ ├── acc_init.h │ │ ├── acc_lib.ch │ │ ├── acc_lib.h │ │ ├── acc_mm.h │ │ ├── acc_os.h │ │ ├── acc_type.h │ │ └── acclib │ │ │ ├── bele.ch │ │ │ ├── dosalloc.ch │ │ │ ├── fnmatch.ch │ │ │ ├── getopt.ch │ │ │ ├── halloc.ch │ │ │ ├── hfread.ch │ │ │ ├── hmemcpy.ch │ │ │ ├── hread.ch │ │ │ ├── hsread.ch │ │ │ ├── hstring.ch │ │ │ ├── misc.ch │ │ │ ├── opendir.ch │ │ │ ├── perfctr.ch │ │ │ ├── rand.ch │ │ │ ├── rdtsc.ch │ │ │ ├── uclock.ch │ │ │ └── wildargv.ch │ ├── alloc.c │ ├── config.h │ ├── getbit.h │ ├── n2_99.ch │ ├── n2b_99.c │ ├── n2b_d.c │ ├── n2b_ds.c │ ├── n2b_to.c │ ├── n2d_99.c │ ├── n2d_d.c │ ├── n2d_ds.c │ ├── n2d_to.c │ ├── n2e_99.c │ ├── n2e_d.c │ ├── n2e_ds.c │ ├── n2e_to.c │ ├── ucl.h │ ├── ucl_conf.h │ ├── ucl_crc.c │ ├── ucl_dll.ch │ ├── ucl_init.c │ ├── ucl_mchw.ch │ ├── ucl_ptr.c │ ├── ucl_ptr.h │ ├── ucl_str.c │ ├── ucl_swd.ch │ ├── ucl_util.c │ └── uclconf.h ├── wflz │ ├── LICENSE.txt │ ├── README.txt │ ├── wfLZ.c │ └── wfLZ.h ├── xz │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── COPYING.0BSD │ ├── COPYING.GPLv2 │ ├── COPYING.GPLv3 │ ├── COPYING.LGPLv2.1 │ ├── ChangeLog │ ├── INSTALL │ ├── INSTALL.generic │ ├── Makefile.am │ ├── NEWS │ ├── PACKAGERS │ ├── README │ ├── THANKS │ ├── TODO │ ├── autogen.sh │ ├── build-aux │ │ ├── manconv.sh │ │ └── version.sh │ ├── cmake │ │ ├── remove-ordinals.cmake │ │ ├── tuklib_common.cmake │ │ ├── tuklib_cpucores.cmake │ │ ├── tuklib_integer.cmake │ │ ├── tuklib_large_file_support.cmake │ │ ├── tuklib_mbstr.cmake │ │ ├── tuklib_physmem.cmake │ │ └── tuklib_progname.cmake │ ├── configure.ac │ ├── debug │ │ ├── Makefile.am │ │ ├── README │ │ ├── crc32.c │ │ ├── full_flush.c │ │ ├── hex2bin.c │ │ ├── known_sizes.c │ │ ├── memusage.c │ │ ├── repeat.c │ │ ├── sync_flush.c │ │ ├── testfilegen-arm64.c │ │ └── translation.bash │ ├── doc │ │ ├── examples │ │ │ ├── 00_README.txt │ │ │ ├── 01_compress_easy.c │ │ │ ├── 02_decompress.c │ │ │ ├── 03_compress_custom.c │ │ │ ├── 04_compress_easy_mt.c │ │ │ ├── 11_file_info.c │ │ │ └── Makefile │ │ ├── faq.txt │ │ ├── history.txt │ │ ├── lzma-file-format.txt │ │ └── xz-file-format.txt │ ├── dos │ │ ├── INSTALL.txt │ │ ├── Makefile │ │ ├── README.txt │ │ └── config.h │ ├── doxygen │ │ ├── Doxyfile │ │ └── update-doxygen │ ├── extra │ │ ├── 7z2lzma │ │ │ └── 7z2lzma.bash │ │ └── scanlzma │ │ │ └── scanlzma.c │ ├── lib │ │ ├── Makefile.am │ │ ├── getopt-cdefs.h │ │ ├── getopt-core.h │ │ ├── getopt-ext.h │ │ ├── getopt-pfx-core.h │ │ ├── getopt-pfx-ext.h │ │ ├── getopt.c │ │ ├── getopt.in.h │ │ ├── getopt1.c │ │ └── getopt_int.h │ ├── m4 │ │ ├── ax_pthread.m4 │ │ ├── getopt.m4 │ │ ├── posix-shell.m4 │ │ ├── tuklib_common.m4 │ │ ├── tuklib_cpucores.m4 │ │ ├── tuklib_integer.m4 │ │ ├── tuklib_mbstr.m4 │ │ ├── tuklib_physmem.m4 │ │ ├── tuklib_progname.m4 │ │ └── visibility.m4 │ ├── po │ │ ├── LINGUAS │ │ ├── Makevars │ │ ├── POTFILES.in │ │ ├── ca.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── eo.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── ko.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── sr.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── xz.pot-header │ │ ├── zh_CN.po │ │ └── zh_TW.po │ ├── po4a │ │ ├── de.po │ │ ├── fr.po │ │ ├── ko.po │ │ ├── po4a.conf │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── uk.po │ │ └── update-po │ ├── src │ │ ├── Makefile.am │ │ ├── common │ │ │ ├── common_w32res.rc │ │ │ ├── my_landlock.h │ │ │ ├── mythread.h │ │ │ ├── sysdefs.h │ │ │ ├── tuklib_common.h │ │ │ ├── tuklib_config.h │ │ │ ├── tuklib_cpucores.c │ │ │ ├── tuklib_cpucores.h │ │ │ ├── tuklib_exit.c │ │ │ ├── tuklib_exit.h │ │ │ ├── tuklib_gettext.h │ │ │ ├── tuklib_integer.h │ │ │ ├── tuklib_mbstr.h │ │ │ ├── tuklib_mbstr_fw.c │ │ │ ├── tuklib_mbstr_nonprint.c │ │ │ ├── tuklib_mbstr_nonprint.h │ │ │ ├── tuklib_mbstr_width.c │ │ │ ├── tuklib_mbstr_wrap.c │ │ │ ├── tuklib_mbstr_wrap.h │ │ │ ├── tuklib_open_stdxxx.c │ │ │ ├── tuklib_open_stdxxx.h │ │ │ ├── tuklib_physmem.c │ │ │ ├── tuklib_physmem.h │ │ │ ├── tuklib_progname.c │ │ │ ├── tuklib_progname.h │ │ │ ├── w32_application.manifest │ │ │ └── w32_application.manifest.comments.txt │ │ ├── config.h │ │ ├── liblzma │ │ │ ├── Makefile.am │ │ │ ├── api │ │ │ │ ├── Makefile.am │ │ │ │ ├── lzma.h │ │ │ │ └── lzma │ │ │ │ │ ├── base.h │ │ │ │ │ ├── bcj.h │ │ │ │ │ ├── block.h │ │ │ │ │ ├── check.h │ │ │ │ │ ├── container.h │ │ │ │ │ ├── delta.h │ │ │ │ │ ├── filter.h │ │ │ │ │ ├── hardware.h │ │ │ │ │ ├── index.h │ │ │ │ │ ├── index_hash.h │ │ │ │ │ ├── lzma12.h │ │ │ │ │ ├── stream_flags.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── vli.h │ │ │ ├── check │ │ │ │ ├── Makefile.inc │ │ │ │ ├── check.c │ │ │ │ ├── check.h │ │ │ │ ├── crc32_arm64.h │ │ │ │ ├── crc32_fast.c │ │ │ │ ├── crc32_loongarch.h │ │ │ │ ├── crc32_small.c │ │ │ │ ├── crc32_table.c │ │ │ │ ├── crc32_table_be.h │ │ │ │ ├── crc32_table_le.h │ │ │ │ ├── crc32_tablegen.c │ │ │ │ ├── crc32_x86.S │ │ │ │ ├── crc64_fast.c │ │ │ │ ├── crc64_small.c │ │ │ │ ├── crc64_table.c │ │ │ │ ├── crc64_table_be.h │ │ │ │ ├── crc64_table_le.h │ │ │ │ ├── crc64_tablegen.c │ │ │ │ ├── crc64_x86.S │ │ │ │ ├── crc_clmul_consts_gen.c │ │ │ │ ├── crc_common.h │ │ │ │ ├── crc_x86_clmul.h │ │ │ │ └── sha256.c │ │ │ ├── common │ │ │ │ ├── Makefile.inc │ │ │ │ ├── alone_decoder.c │ │ │ │ ├── alone_decoder.h │ │ │ │ ├── alone_encoder.c │ │ │ │ ├── auto_decoder.c │ │ │ │ ├── block_buffer_decoder.c │ │ │ │ ├── block_buffer_encoder.c │ │ │ │ ├── block_buffer_encoder.h │ │ │ │ ├── block_decoder.c │ │ │ │ ├── block_decoder.h │ │ │ │ ├── block_encoder.c │ │ │ │ ├── block_encoder.h │ │ │ │ ├── block_header_decoder.c │ │ │ │ ├── block_header_encoder.c │ │ │ │ ├── block_util.c │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── easy_buffer_encoder.c │ │ │ │ ├── easy_decoder_memusage.c │ │ │ │ ├── easy_encoder.c │ │ │ │ ├── easy_encoder_memusage.c │ │ │ │ ├── easy_preset.c │ │ │ │ ├── easy_preset.h │ │ │ │ ├── file_info.c │ │ │ │ ├── filter_buffer_decoder.c │ │ │ │ ├── filter_buffer_encoder.c │ │ │ │ ├── filter_common.c │ │ │ │ ├── filter_common.h │ │ │ │ ├── filter_decoder.c │ │ │ │ ├── filter_decoder.h │ │ │ │ ├── filter_encoder.c │ │ │ │ ├── filter_encoder.h │ │ │ │ ├── filter_flags_decoder.c │ │ │ │ ├── filter_flags_encoder.c │ │ │ │ ├── hardware_cputhreads.c │ │ │ │ ├── hardware_physmem.c │ │ │ │ ├── index.c │ │ │ │ ├── index.h │ │ │ │ ├── index_decoder.c │ │ │ │ ├── index_decoder.h │ │ │ │ ├── index_encoder.c │ │ │ │ ├── index_encoder.h │ │ │ │ ├── index_hash.c │ │ │ │ ├── lzip_decoder.c │ │ │ │ ├── lzip_decoder.h │ │ │ │ ├── memcmplen.h │ │ │ │ ├── microlzma_decoder.c │ │ │ │ ├── microlzma_encoder.c │ │ │ │ ├── outqueue.c │ │ │ │ ├── outqueue.h │ │ │ │ ├── stream_buffer_decoder.c │ │ │ │ ├── stream_buffer_encoder.c │ │ │ │ ├── stream_decoder.c │ │ │ │ ├── stream_decoder.h │ │ │ │ ├── stream_decoder_mt.c │ │ │ │ ├── stream_encoder.c │ │ │ │ ├── stream_encoder_mt.c │ │ │ │ ├── stream_flags_common.c │ │ │ │ ├── stream_flags_common.h │ │ │ │ ├── stream_flags_decoder.c │ │ │ │ ├── stream_flags_encoder.c │ │ │ │ ├── string_conversion.c │ │ │ │ ├── vli_decoder.c │ │ │ │ ├── vli_encoder.c │ │ │ │ └── vli_size.c │ │ │ ├── delta │ │ │ │ ├── Makefile.inc │ │ │ │ ├── delta_common.c │ │ │ │ ├── delta_common.h │ │ │ │ ├── delta_decoder.c │ │ │ │ ├── delta_decoder.h │ │ │ │ ├── delta_encoder.c │ │ │ │ ├── delta_encoder.h │ │ │ │ └── delta_private.h │ │ │ ├── liblzma.pc.in │ │ │ ├── liblzma_generic.map │ │ │ ├── liblzma_linux.map │ │ │ ├── liblzma_w32res.rc │ │ │ ├── lz │ │ │ │ ├── Makefile.inc │ │ │ │ ├── lz_decoder.c │ │ │ │ ├── lz_decoder.h │ │ │ │ ├── lz_encoder.c │ │ │ │ ├── lz_encoder.h │ │ │ │ ├── lz_encoder_hash.h │ │ │ │ ├── lz_encoder_hash_table.h │ │ │ │ └── lz_encoder_mf.c │ │ │ ├── lzma │ │ │ │ ├── Makefile.inc │ │ │ │ ├── fastpos.h │ │ │ │ ├── fastpos_table.c │ │ │ │ ├── fastpos_tablegen.c │ │ │ │ ├── lzma2_decoder.c │ │ │ │ ├── lzma2_decoder.h │ │ │ │ ├── lzma2_encoder.c │ │ │ │ ├── lzma2_encoder.h │ │ │ │ ├── lzma_common.h │ │ │ │ ├── lzma_decoder.c │ │ │ │ ├── lzma_decoder.h │ │ │ │ ├── lzma_encoder.c │ │ │ │ ├── lzma_encoder.h │ │ │ │ ├── lzma_encoder_optimum_fast.c │ │ │ │ ├── lzma_encoder_optimum_normal.c │ │ │ │ ├── lzma_encoder_presets.c │ │ │ │ └── lzma_encoder_private.h │ │ │ ├── rangecoder │ │ │ │ ├── Makefile.inc │ │ │ │ ├── price.h │ │ │ │ ├── price_table.c │ │ │ │ ├── price_tablegen.c │ │ │ │ ├── range_common.h │ │ │ │ ├── range_decoder.h │ │ │ │ └── range_encoder.h │ │ │ ├── simple │ │ │ │ ├── Makefile.inc │ │ │ │ ├── arm.c │ │ │ │ ├── arm64.c │ │ │ │ ├── armthumb.c │ │ │ │ ├── ia64.c │ │ │ │ ├── powerpc.c │ │ │ │ ├── riscv.c │ │ │ │ ├── simple_coder.c │ │ │ │ ├── simple_coder.h │ │ │ │ ├── simple_decoder.c │ │ │ │ ├── simple_decoder.h │ │ │ │ ├── simple_encoder.c │ │ │ │ ├── simple_encoder.h │ │ │ │ ├── simple_private.h │ │ │ │ ├── sparc.c │ │ │ │ └── x86.c │ │ │ └── validate_map.sh │ │ ├── lzmainfo │ │ │ ├── Makefile.am │ │ │ ├── lzmainfo.1 │ │ │ ├── lzmainfo.c │ │ │ └── lzmainfo_w32res.rc │ │ ├── scripts │ │ │ ├── Makefile.am │ │ │ ├── xzdiff.1 │ │ │ ├── xzdiff.in │ │ │ ├── xzgrep.1 │ │ │ ├── xzgrep.in │ │ │ ├── xzless.1 │ │ │ ├── xzless.in │ │ │ ├── xzmore.1 │ │ │ └── xzmore.in │ │ ├── xz │ │ │ ├── Makefile.am │ │ │ ├── args.c │ │ │ ├── args.h │ │ │ ├── coder.c │ │ │ ├── coder.h │ │ │ ├── file_io.c │ │ │ ├── file_io.h │ │ │ ├── hardware.c │ │ │ ├── hardware.h │ │ │ ├── list.c │ │ │ ├── list.h │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── message.c │ │ │ ├── message.h │ │ │ ├── mytime.c │ │ │ ├── mytime.h │ │ │ ├── options.c │ │ │ ├── options.h │ │ │ ├── private.h │ │ │ ├── sandbox.c │ │ │ ├── sandbox.h │ │ │ ├── signals.c │ │ │ ├── signals.h │ │ │ ├── suffix.c │ │ │ ├── suffix.h │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── xz.1 │ │ │ └── xz_w32res.rc │ │ └── xzdec │ │ │ ├── Makefile.am │ │ │ ├── lzmadec_w32res.rc │ │ │ ├── xzdec.1 │ │ │ ├── xzdec.c │ │ │ └── xzdec_w32res.rc │ ├── tests │ │ ├── Makefile.am │ │ ├── code_coverage.sh │ │ ├── create_compress_files.c │ │ ├── files │ │ │ ├── README │ │ │ ├── bad-0-backward_size.xz │ │ │ ├── bad-0-empty-truncated.xz │ │ │ ├── bad-0-footer_magic.xz │ │ │ ├── bad-0-header_magic.xz │ │ │ ├── bad-0-nonempty_index.xz │ │ │ ├── bad-0cat-alone.xz │ │ │ ├── bad-0cat-header_magic.xz │ │ │ ├── bad-0catpad-empty.xz │ │ │ ├── bad-0pad-empty.xz │ │ │ ├── bad-1-block_header-1.xz │ │ │ ├── bad-1-block_header-2.xz │ │ │ ├── bad-1-block_header-3.xz │ │ │ ├── bad-1-block_header-4.xz │ │ │ ├── bad-1-block_header-5.xz │ │ │ ├── bad-1-block_header-6.xz │ │ │ ├── bad-1-check-crc32-2.xz │ │ │ ├── bad-1-check-crc32.xz │ │ │ ├── bad-1-check-crc64.xz │ │ │ ├── bad-1-check-sha256.xz │ │ │ ├── bad-1-lzma2-1.xz │ │ │ ├── bad-1-lzma2-10.xz │ │ │ ├── bad-1-lzma2-11.xz │ │ │ ├── bad-1-lzma2-2.xz │ │ │ ├── bad-1-lzma2-3.xz │ │ │ ├── bad-1-lzma2-4.xz │ │ │ ├── bad-1-lzma2-5.xz │ │ │ ├── bad-1-lzma2-6.xz │ │ │ ├── bad-1-lzma2-7.xz │ │ │ ├── bad-1-lzma2-8.xz │ │ │ ├── bad-1-lzma2-9.xz │ │ │ ├── bad-1-stream_flags-1.xz │ │ │ ├── bad-1-stream_flags-2.xz │ │ │ ├── bad-1-stream_flags-3.xz │ │ │ ├── bad-1-v0-uncomp-size.lz │ │ │ ├── bad-1-v1-crc32.lz │ │ │ ├── bad-1-v1-dict-1.lz │ │ │ ├── bad-1-v1-dict-2.lz │ │ │ ├── bad-1-v1-magic-1.lz │ │ │ ├── bad-1-v1-magic-2.lz │ │ │ ├── bad-1-v1-member-size.lz │ │ │ ├── bad-1-v1-trailing-magic.lz │ │ │ ├── bad-1-v1-uncomp-size.lz │ │ │ ├── bad-1-vli-1.xz │ │ │ ├── bad-1-vli-2.xz │ │ │ ├── bad-2-compressed_data_padding.xz │ │ │ ├── bad-2-index-1.xz │ │ │ ├── bad-2-index-2.xz │ │ │ ├── bad-2-index-3.xz │ │ │ ├── bad-2-index-4.xz │ │ │ ├── bad-2-index-5.xz │ │ │ ├── bad-3-index-uncomp-overflow.xz │ │ │ ├── bad-too_big_size-with_eopm.lzma │ │ │ ├── bad-too_small_size-without_eopm-1.lzma │ │ │ ├── bad-too_small_size-without_eopm-2.lzma │ │ │ ├── bad-too_small_size-without_eopm-3.lzma │ │ │ ├── bad-unknown_size-without_eopm.lzma │ │ │ ├── good-0-empty.xz │ │ │ ├── good-0cat-empty.xz │ │ │ ├── good-0catpad-empty.xz │ │ │ ├── good-0pad-empty.xz │ │ │ ├── good-1-3delta-lzma2.xz │ │ │ ├── good-1-arm64-lzma2-1.xz │ │ │ ├── good-1-arm64-lzma2-2.xz │ │ │ ├── good-1-block_header-1.xz │ │ │ ├── good-1-block_header-2.xz │ │ │ ├── good-1-block_header-3.xz │ │ │ ├── good-1-check-crc32.xz │ │ │ ├── good-1-check-crc64.xz │ │ │ ├── good-1-check-none.xz │ │ │ ├── good-1-check-sha256.xz │ │ │ ├── good-1-delta-lzma2.tiff.xz │ │ │ ├── good-1-empty-bcj-lzma2.xz │ │ │ ├── good-1-lzma2-1.xz │ │ │ ├── good-1-lzma2-2.xz │ │ │ ├── good-1-lzma2-3.xz │ │ │ ├── good-1-lzma2-4.xz │ │ │ ├── good-1-lzma2-5.xz │ │ │ ├── good-1-v0-trailing-1.lz │ │ │ ├── good-1-v0.lz │ │ │ ├── good-1-v1-trailing-1.lz │ │ │ ├── good-1-v1-trailing-2.lz │ │ │ ├── good-1-v1.lz │ │ │ ├── good-2-lzma2.xz │ │ │ ├── good-2-v0-v1.lz │ │ │ ├── good-2-v1-v0.lz │ │ │ ├── good-2-v1-v1.lz │ │ │ ├── good-known_size-with_eopm.lzma │ │ │ ├── good-known_size-without_eopm.lzma │ │ │ ├── good-unknown_size-with_eopm.lzma │ │ │ ├── unsupported-1-v234.lz │ │ │ ├── unsupported-block_header.xz │ │ │ ├── unsupported-check.xz │ │ │ ├── unsupported-filter_flags-1.xz │ │ │ ├── unsupported-filter_flags-2.xz │ │ │ └── unsupported-filter_flags-3.xz │ │ ├── ossfuzz │ │ │ ├── Makefile │ │ │ ├── config │ │ │ │ ├── fuzz_decode_alone.options │ │ │ │ ├── fuzz_decode_stream.options │ │ │ │ ├── fuzz_encode_stream.options │ │ │ │ ├── fuzz_lzma.dict │ │ │ │ └── fuzz_xz.dict │ │ │ ├── fuzz_common.h │ │ │ ├── fuzz_decode_alone.c │ │ │ ├── fuzz_decode_stream.c │ │ │ └── fuzz_encode_stream.c │ │ ├── test_bcj_exact_size.c │ │ ├── test_block_header.c │ │ ├── test_check.c │ │ ├── test_compress.sh │ │ ├── test_compress_generated_abc │ │ ├── test_compress_generated_random │ │ ├── test_compress_generated_text │ │ ├── test_files.sh │ │ ├── test_filter_flags.c │ │ ├── test_filter_str.c │ │ ├── test_hardware.c │ │ ├── test_index.c │ │ ├── test_index_hash.c │ │ ├── test_lzip_decoder.c │ │ ├── test_memlimit.c │ │ ├── test_microlzma.c │ │ ├── test_scripts.sh │ │ ├── test_stream_flags.c │ │ ├── test_suffix.sh │ │ ├── test_vli.c │ │ ├── tests.cmake │ │ ├── tests.h │ │ ├── tests_w32res.rc │ │ ├── tuktest.h │ │ └── xzgrep_expected_output │ └── windows │ │ ├── INSTALL-MSVC.txt │ │ ├── INSTALL-MinGW-w64_with_Autotools.txt │ │ ├── INSTALL-MinGW-w64_with_CMake.txt │ │ ├── README-Windows.txt │ │ ├── build-with-cmake.bat │ │ ├── build.bash │ │ └── liblzma-crt-mixing.txt ├── yalz77 │ ├── README.md │ └── lz77.h ├── yappy │ ├── LICENSE-2.0 │ ├── README │ ├── yappy.cpp │ └── yappy.hpp ├── zlib-ng │ ├── LICENSE.md │ ├── PORTING.md │ ├── README.md │ ├── adler32.c │ ├── adler32_p.h │ ├── arch │ │ ├── arm │ │ │ ├── Makefile.in │ │ │ ├── acle_intrins.h │ │ │ ├── adler32_neon.c │ │ │ ├── arm_features.c │ │ │ ├── arm_features.h │ │ │ ├── arm_functions.h │ │ │ ├── chunkset_neon.c │ │ │ ├── compare256_neon.c │ │ │ ├── crc32_acle.c │ │ │ ├── neon_intrins.h │ │ │ ├── slide_hash_armv6.c │ │ │ └── slide_hash_neon.c │ │ ├── generic │ │ │ ├── Makefile.in │ │ │ ├── adler32_c.c │ │ │ ├── adler32_fold_c.c │ │ │ ├── chunk_permute_table.h │ │ │ ├── chunkset_c.c │ │ │ ├── compare256_c.c │ │ │ ├── compare256_p.h │ │ │ ├── crc32_braid_c.c │ │ │ ├── crc32_fold_c.c │ │ │ ├── generic_functions.h │ │ │ └── slide_hash_c.c │ │ ├── power │ │ │ ├── Makefile.in │ │ │ ├── adler32_power8.c │ │ │ ├── adler32_vmx.c │ │ │ ├── chunkset_power8.c │ │ │ ├── compare256_power9.c │ │ │ ├── crc32_constants.h │ │ │ ├── crc32_power8.c │ │ │ ├── power_features.c │ │ │ ├── power_features.h │ │ │ ├── power_functions.h │ │ │ ├── power_intrins.h │ │ │ ├── slide_hash_power8.c │ │ │ ├── slide_hash_vmx.c │ │ │ └── slide_ppc_tpl.h │ │ ├── riscv │ │ │ ├── Makefile.in │ │ │ ├── README.md │ │ │ ├── adler32_rvv.c │ │ │ ├── chunkset_rvv.c │ │ │ ├── compare256_rvv.c │ │ │ ├── riscv_features.c │ │ │ ├── riscv_features.h │ │ │ ├── riscv_functions.h │ │ │ └── slide_hash_rvv.c │ │ ├── s390 │ │ │ ├── Makefile.in │ │ │ ├── README.md │ │ │ ├── crc32-vx.c │ │ │ ├── dfltcc_common.h │ │ │ ├── dfltcc_deflate.c │ │ │ ├── dfltcc_deflate.h │ │ │ ├── dfltcc_detail.h │ │ │ ├── dfltcc_inflate.c │ │ │ ├── dfltcc_inflate.h │ │ │ ├── s390_features.c │ │ │ ├── s390_features.h │ │ │ ├── s390_functions.h │ │ │ └── self-hosted-builder │ │ │ │ ├── actions-runner │ │ │ │ ├── actions-runner-rebuild.sh │ │ │ │ ├── actions-runner.Dockerfile │ │ │ │ ├── actions-runner.service │ │ │ │ └── entrypoint │ │ └── x86 │ │ │ ├── Makefile.in │ │ │ ├── adler32_avx2.c │ │ │ ├── adler32_avx2_p.h │ │ │ ├── adler32_avx512.c │ │ │ ├── adler32_avx512_p.h │ │ │ ├── adler32_avx512_vnni.c │ │ │ ├── adler32_sse42.c │ │ │ ├── adler32_ssse3.c │ │ │ ├── adler32_ssse3_p.h │ │ │ ├── avx2_tables.h │ │ │ ├── chunkset_avx2.c │ │ │ ├── chunkset_avx512.c │ │ │ ├── chunkset_sse2.c │ │ │ ├── chunkset_ssse3.c │ │ │ ├── compare256_avx2.c │ │ │ ├── compare256_sse2.c │ │ │ ├── crc32_fold_pclmulqdq_tpl.h │ │ │ ├── crc32_fold_vpclmulqdq_tpl.h │ │ │ ├── crc32_pclmulqdq.c │ │ │ ├── crc32_pclmulqdq_tpl.h │ │ │ ├── crc32_vpclmulqdq.c │ │ │ ├── slide_hash_avx2.c │ │ │ ├── slide_hash_sse2.c │ │ │ ├── x86_features.c │ │ │ ├── x86_features.h │ │ │ ├── x86_functions.h │ │ │ └── x86_intrins.h │ ├── arch_functions.h │ ├── chunkset_tpl.h │ ├── compare256_rle.h │ ├── compress.c │ ├── cpu_features.c │ ├── cpu_features.h │ ├── crc32.c │ ├── crc32.h │ ├── crc32_braid_comb.c │ ├── crc32_braid_comb_p.h │ ├── crc32_braid_p.h │ ├── crc32_braid_tbl.h │ ├── deflate.c │ ├── deflate.h │ ├── deflate_fast.c │ ├── deflate_huff.c │ ├── deflate_medium.c │ ├── deflate_p.h │ ├── deflate_quick.c │ ├── deflate_rle.c │ ├── deflate_slow.c │ ├── deflate_stored.c │ ├── fallback_builtins.h │ ├── functable.c │ ├── functable.h │ ├── gzguts.h │ ├── gzlib.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast_tpl.h │ ├── inffixed_tbl.h │ ├── inflate.c │ ├── inflate.h │ ├── inflate_p.h │ ├── inftrees.c │ ├── inftrees.h │ ├── insert_string.c │ ├── insert_string_roll.c │ ├── insert_string_tpl.h │ ├── match_tpl.h │ ├── trees.c │ ├── trees.h │ ├── trees_emit.h │ ├── trees_tbl.h │ ├── uncompr.c │ ├── zbuild.h │ ├── zconf-ng.h │ ├── zendian.h │ ├── zlib-ng.h │ ├── zlib_name_mangling-ng.h │ ├── zmemory.h │ ├── zutil.c │ ├── zutil.h │ └── zutil_p.h ├── zlib │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── LICENSE │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── adler32.c │ ├── compress.c │ ├── configure │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── make_vms.com │ ├── treebuild.xml │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zconf.h.cmakein │ ├── zconf.h.in │ ├── zlib.3 │ ├── zlib.3.pdf │ ├── zlib.h │ ├── zlib.map │ ├── zlib.pc.cmakein │ ├── zlib.pc.in │ ├── zutil.c │ └── zutil.h └── zstd │ ├── .buckconfig │ ├── .buckversion │ ├── .cirrus.yml │ ├── .gitattributes │ ├── .github │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yml │ └── workflows │ │ ├── android-ndk-build.yml │ │ ├── commit.yml │ │ ├── dev-long-tests.yml │ │ ├── dev-short-tests.yml │ │ ├── nightly.yml │ │ ├── publish-release-artifacts.yml │ │ ├── scorecards.yml │ │ └── windows-artifacts.yml │ ├── .gitignore │ ├── CHANGELOG │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── LICENSE │ ├── Makefile │ ├── Package.swift │ ├── README.md │ ├── SECURITY.md │ ├── TESTING.md │ ├── build │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── VS2008 │ │ ├── fullbench │ │ │ └── fullbench.vcproj │ │ ├── fuzzer │ │ │ └── fuzzer.vcproj │ │ ├── zstd.sln │ │ ├── zstd │ │ │ └── zstd.vcproj │ │ └── zstdlib │ │ │ └── zstdlib.vcproj │ ├── VS2010 │ │ ├── CompileAsCpp.props │ │ ├── datagen │ │ │ └── datagen.vcxproj │ │ ├── fullbench │ │ │ └── fullbench.vcxproj │ │ ├── fuzzer │ │ │ └── fuzzer.vcxproj │ │ ├── libzstd-dll │ │ │ ├── libzstd-dll.rc │ │ │ └── libzstd-dll.vcxproj │ │ ├── libzstd │ │ │ └── libzstd.vcxproj │ │ ├── zstd.sln │ │ └── zstd │ │ │ ├── zstd.rc │ │ │ └── zstd.vcxproj │ ├── VS_scripts │ │ ├── README.md │ │ ├── build.VS2010.cmd │ │ ├── build.VS2012.cmd │ │ ├── build.VS2013.cmd │ │ ├── build.VS2015.cmd │ │ ├── build.VS2017.cmd │ │ ├── build.VS2017Community.cmd │ │ ├── build.VS2017Enterprise.cmd │ │ ├── build.VS2017Professional.cmd │ │ ├── build.VSPreview.cmd │ │ └── build.generic.cmd │ ├── cmake │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── CMakeModules │ │ │ ├── AddZstdCompilationFlags.cmake │ │ │ ├── FindLibLZ4.cmake │ │ │ ├── GetZstdLibraryVersion.cmake │ │ │ └── JoinPaths.cmake │ │ ├── README.md │ │ ├── contrib │ │ │ ├── CMakeLists.txt │ │ │ ├── gen_html │ │ │ │ └── CMakeLists.txt │ │ │ └── pzstd │ │ │ │ └── CMakeLists.txt │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ └── cmake_uninstall.cmake.in │ │ ├── programs │ │ │ ├── .gitignore │ │ │ └── CMakeLists.txt │ │ ├── tests │ │ │ ├── .gitignore │ │ │ └── CMakeLists.txt │ │ └── zstdConfig.cmake.in │ ├── meson │ │ ├── GetZstdLibraryVersion.py │ │ ├── InstallSymlink.py │ │ ├── README.md │ │ ├── contrib │ │ │ ├── gen_html │ │ │ │ └── meson.build │ │ │ ├── meson.build │ │ │ └── pzstd │ │ │ │ └── meson.build │ │ ├── lib │ │ │ └── meson.build │ │ ├── meson.build │ │ ├── meson_options.txt │ │ ├── programs │ │ │ └── meson.build │ │ └── tests │ │ │ ├── meson.build │ │ │ └── valgrindTest.py │ └── single_file_libs │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build_decoder_test.sh │ │ ├── build_library_test.sh │ │ ├── combine.py │ │ ├── combine.sh │ │ ├── create_single_file_decoder.sh │ │ ├── create_single_file_library.sh │ │ ├── examples │ │ ├── README.md │ │ ├── emscripten.c │ │ ├── roundtrip.c │ │ ├── shell.html │ │ ├── simple.c │ │ ├── testcard-dxt1.inl │ │ ├── testcard-zstd.inl │ │ └── testcard.png │ │ ├── zstd-in.c │ │ └── zstddeclib-in.c │ ├── contrib │ ├── VS2005 │ │ ├── README.md │ │ ├── fullbench │ │ │ └── fullbench.vcproj │ │ ├── fuzzer │ │ │ └── fuzzer.vcproj │ │ ├── zstd.sln │ │ ├── zstd │ │ │ └── zstd.vcproj │ │ └── zstdlib │ │ │ └── zstdlib.vcproj │ ├── cleanTabs │ ├── diagnose_corruption │ │ ├── .gitignore │ │ ├── Makefile │ │ └── check_flipped_bits.c │ ├── docker │ │ ├── Dockerfile │ │ └── README.md │ ├── externalSequenceProducer │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── main.c │ │ ├── sequence_producer.c │ │ └── sequence_producer.h │ ├── freestanding_lib │ │ └── freestanding.py │ ├── gen_html │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── gen-zstd-manual.sh │ │ └── gen_html.cpp │ ├── largeNbDicts │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ └── largeNbDicts.c │ ├── linux-kernel │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── btrfs-benchmark.sh │ │ ├── btrfs-extract-benchmark.sh │ │ ├── decompress_sources.h │ │ ├── linux.mk │ │ ├── linux_zstd.h │ │ ├── mem.h │ │ ├── squashfs-benchmark.sh │ │ ├── test │ │ │ ├── Makefile │ │ │ ├── include │ │ │ │ └── linux │ │ │ │ │ ├── compiler.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── kernel.h │ │ │ │ │ ├── limits.h │ │ │ │ │ ├── math64.h │ │ │ │ │ ├── module.h │ │ │ │ │ ├── printk.h │ │ │ │ │ ├── stddef.h │ │ │ │ │ ├── swab.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── unaligned.h │ │ │ │ │ └── xxhash.h │ │ │ ├── macro-test.sh │ │ │ ├── static_test.c │ │ │ └── test.c │ │ ├── zstd_common_module.c │ │ ├── zstd_compress_module.c │ │ ├── zstd_decompress_module.c │ │ └── zstd_deps.h │ ├── match_finders │ │ ├── README.md │ │ ├── zstd_edist.c │ │ └── zstd_edist.h │ ├── premake │ │ ├── premake4.lua │ │ └── zstd.lua │ ├── pzstd │ │ ├── .gitignore │ │ ├── BUCK │ │ ├── ErrorHolder.h │ │ ├── Logging.h │ │ ├── Makefile │ │ ├── Options.cpp │ │ ├── Options.h │ │ ├── Pzstd.cpp │ │ ├── Pzstd.h │ │ ├── README.md │ │ ├── SkippableFrame.cpp │ │ ├── SkippableFrame.h │ │ ├── images │ │ │ ├── Cspeed.png │ │ │ └── Dspeed.png │ │ ├── main.cpp │ │ ├── test │ │ │ ├── BUCK │ │ │ ├── OptionsTest.cpp │ │ │ ├── PzstdTest.cpp │ │ │ ├── RoundTrip.h │ │ │ └── RoundTripTest.cpp │ │ └── utils │ │ │ ├── BUCK │ │ │ ├── Buffer.h │ │ │ ├── FileSystem.h │ │ │ ├── Likely.h │ │ │ ├── Portability.h │ │ │ ├── Range.h │ │ │ ├── ResourcePool.h │ │ │ ├── ScopeGuard.h │ │ │ ├── ThreadPool.h │ │ │ ├── WorkQueue.h │ │ │ └── test │ │ │ ├── BUCK │ │ │ ├── BufferTest.cpp │ │ │ ├── RangeTest.cpp │ │ │ ├── ResourcePoolTest.cpp │ │ │ ├── ScopeGuardTest.cpp │ │ │ ├── ThreadPoolTest.cpp │ │ │ └── WorkQueueTest.cpp │ ├── recovery │ │ ├── Makefile │ │ └── recover_directory.c │ ├── seekable_format │ │ ├── README.md │ │ ├── examples │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── parallel_compression.c │ │ │ ├── parallel_processing.c │ │ │ ├── seekable_compression.c │ │ │ ├── seekable_decompression.c │ │ │ └── seekable_decompression_mem.c │ │ ├── tests │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── seekable_tests.c │ │ ├── zstd_seekable.h │ │ ├── zstd_seekable_compression_format.md │ │ ├── zstdseek_compress.c │ │ └── zstdseek_decompress.c │ ├── seqBench │ │ ├── Makefile │ │ └── seqBench.c │ └── snap │ │ └── snapcraft.yaml │ ├── doc │ ├── README.md │ ├── decompressor_errata.md │ ├── decompressor_permissive.md │ ├── educational_decoder │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── harness.c │ │ ├── zstd_decompress.c │ │ └── zstd_decompress.h │ ├── images │ │ ├── CSpeed2.png │ │ ├── DCspeed5.png │ │ ├── DSpeed3.png │ │ ├── cdict_v136.png │ │ ├── dict-cr.png │ │ ├── dict-cs.png │ │ ├── dict-ds.png │ │ ├── zstd_cdict_v1_3_5.png │ │ └── zstd_logo86.png │ ├── zstd_compression_format.md │ └── zstd_manual.html │ ├── examples │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── common.h │ ├── dictionary_compression.c │ ├── dictionary_decompression.c │ ├── multiple_simple_compression.c │ ├── multiple_streaming_compression.c │ ├── simple_compression.c │ ├── simple_decompression.c │ ├── streaming_compression.c │ ├── streaming_compression_thread_pool.c │ ├── streaming_decompression.c │ └── streaming_memory_usage.c │ ├── lib │ ├── .gitignore │ ├── BUCK │ ├── Makefile │ ├── README.md │ ├── common │ │ ├── allocations.h │ │ ├── bits.h │ │ ├── bitstream.h │ │ ├── compiler.h │ │ ├── cpu.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── entropy_common.c │ │ ├── error_private.c │ │ ├── error_private.h │ │ ├── fse.h │ │ ├── fse_decompress.c │ │ ├── huf.h │ │ ├── mem.h │ │ ├── pool.c │ │ ├── pool.h │ │ ├── portability_macros.h │ │ ├── threading.c │ │ ├── threading.h │ │ ├── xxhash.c │ │ ├── xxhash.h │ │ ├── zstd_common.c │ │ ├── zstd_deps.h │ │ ├── zstd_internal.h │ │ └── zstd_trace.h │ ├── compress │ │ ├── clevels.h │ │ ├── fse_compress.c │ │ ├── hist.c │ │ ├── hist.h │ │ ├── huf_compress.c │ │ ├── zstd_compress.c │ │ ├── zstd_compress_internal.h │ │ ├── zstd_compress_literals.c │ │ ├── zstd_compress_literals.h │ │ ├── zstd_compress_sequences.c │ │ ├── zstd_compress_sequences.h │ │ ├── zstd_compress_superblock.c │ │ ├── zstd_compress_superblock.h │ │ ├── zstd_cwksp.h │ │ ├── zstd_double_fast.c │ │ ├── zstd_double_fast.h │ │ ├── zstd_fast.c │ │ ├── zstd_fast.h │ │ ├── zstd_lazy.c │ │ ├── zstd_lazy.h │ │ ├── zstd_ldm.c │ │ ├── zstd_ldm.h │ │ ├── zstd_ldm_geartab.h │ │ ├── zstd_opt.c │ │ ├── zstd_opt.h │ │ ├── zstd_preSplit.c │ │ ├── zstd_preSplit.h │ │ ├── zstdmt_compress.c │ │ └── zstdmt_compress.h │ ├── decompress │ │ ├── huf_decompress.c │ │ ├── huf_decompress_amd64.S │ │ ├── zstd_ddict.c │ │ ├── zstd_ddict.h │ │ ├── zstd_decompress.c │ │ ├── zstd_decompress_block.c │ │ ├── zstd_decompress_block.h │ │ └── zstd_decompress_internal.h │ ├── deprecated │ │ ├── zbuff.h │ │ ├── zbuff_common.c │ │ ├── zbuff_compress.c │ │ └── zbuff_decompress.c │ ├── dictBuilder │ │ ├── cover.c │ │ ├── cover.h │ │ ├── divsufsort.c │ │ ├── divsufsort.h │ │ ├── fastcover.c │ │ └── zdict.c │ ├── dll │ │ └── example │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── build_package.bat │ │ │ ├── fullbench-dll.sln │ │ │ └── fullbench-dll.vcxproj │ ├── legacy │ │ ├── zstd_legacy.h │ │ ├── zstd_v01.c │ │ ├── zstd_v01.h │ │ ├── zstd_v02.c │ │ ├── zstd_v02.h │ │ ├── zstd_v03.c │ │ ├── zstd_v03.h │ │ ├── zstd_v04.c │ │ ├── zstd_v04.h │ │ ├── zstd_v05.c │ │ ├── zstd_v05.h │ │ ├── zstd_v06.c │ │ ├── zstd_v06.h │ │ ├── zstd_v07.c │ │ └── zstd_v07.h │ ├── libzstd.mk │ ├── libzstd.pc.in │ ├── module.modulemap │ ├── zdict.h │ ├── zstd.h │ └── zstd_errors.h │ ├── programs │ ├── .gitignore │ ├── BUCK │ ├── Makefile │ ├── README.md │ ├── benchfn.c │ ├── benchfn.h │ ├── benchzstd.c │ ├── benchzstd.h │ ├── datagen.c │ ├── datagen.h │ ├── dibio.c │ ├── dibio.h │ ├── fileio.c │ ├── fileio.h │ ├── fileio_asyncio.c │ ├── fileio_asyncio.h │ ├── fileio_common.h │ ├── fileio_types.h │ ├── lorem.c │ ├── lorem.h │ ├── platform.h │ ├── timefn.c │ ├── timefn.h │ ├── util.c │ ├── util.h │ ├── windres │ │ ├── verrsrc.h │ │ ├── zstd.rc │ │ ├── zstd32.res │ │ └── zstd64.res │ ├── zstd.1 │ ├── zstd.1.md │ ├── zstdcli.c │ ├── zstdcli_trace.c │ ├── zstdcli_trace.h │ ├── zstdgrep │ ├── zstdgrep.1 │ ├── zstdgrep.1.md │ ├── zstdless │ ├── zstdless.1 │ └── zstdless.1.md │ ├── tests │ ├── .gitignore │ ├── DEPRECATED-test-zstd-speed.py │ ├── Makefile │ ├── README.md │ ├── automated_benchmarking.py │ ├── bigdict.c │ ├── checkTag.c │ ├── check_size.py │ ├── cli-tests │ │ ├── .gitignore │ │ ├── README.md │ │ ├── basic │ │ │ ├── args.sh │ │ │ ├── args.sh.exit │ │ │ ├── args.sh.stderr.glob │ │ │ ├── help.sh │ │ │ ├── help.sh.stdout.glob │ │ │ ├── memlimit.sh │ │ │ ├── memlimit.sh.stderr.exact │ │ │ ├── memlimit.sh.stdout.exact │ │ │ ├── output_dir.sh │ │ │ ├── output_dir.sh.stderr.exact │ │ │ ├── output_dir.sh.stdout.exact │ │ │ ├── version.sh │ │ │ └── version.sh.stdout.glob │ │ ├── bin │ │ │ ├── cmp_size │ │ │ ├── datagen │ │ │ ├── die │ │ │ ├── println │ │ │ ├── unzstd │ │ │ ├── zstd │ │ │ ├── zstdcat │ │ │ ├── zstdgrep │ │ │ └── zstdless │ │ ├── cltools │ │ │ ├── setup │ │ │ ├── zstdgrep.sh │ │ │ ├── zstdgrep.sh.exit │ │ │ ├── zstdgrep.sh.stderr.exact │ │ │ ├── zstdgrep.sh.stdout.glob │ │ │ ├── zstdless.sh │ │ │ ├── zstdless.sh.stderr.exact │ │ │ └── zstdless.sh.stdout.glob │ │ ├── common │ │ │ ├── format.sh │ │ │ ├── mtime.sh │ │ │ ├── permissions.sh │ │ │ └── platform.sh │ │ ├── compression │ │ │ ├── adapt.sh │ │ │ ├── basic.sh │ │ │ ├── compress-literals.sh │ │ │ ├── format.sh │ │ │ ├── golden.sh │ │ │ ├── gzip-compat.sh │ │ │ ├── levels.sh │ │ │ ├── levels.sh.stderr.exact │ │ │ ├── long-distance-matcher.sh │ │ │ ├── multi-threaded.sh │ │ │ ├── multi-threaded.sh.stderr.exact │ │ │ ├── multiple-files.sh │ │ │ ├── multiple-files.sh.stdout.exact │ │ │ ├── row-match-finder.sh │ │ │ ├── setup │ │ │ ├── stream-size.sh │ │ │ ├── verbose-wlog.sh │ │ │ ├── verbose-wlog.sh.stderr.glob │ │ │ ├── verbose-wlog.sh.stdout.glob │ │ │ ├── window-resize.sh │ │ │ ├── window-resize.sh.stderr.ignore │ │ │ └── window-resize.sh.stdout.glob │ │ ├── decompression │ │ │ ├── detectErrors.sh │ │ │ ├── golden.sh │ │ │ ├── pass-through.sh │ │ │ ├── pass-through.sh.stderr.exact │ │ │ └── pass-through.sh.stdout.exact │ │ ├── dict-builder │ │ │ ├── empty-input.sh │ │ │ ├── empty-input.sh.stderr.exact │ │ │ ├── no-inputs.sh │ │ │ ├── no-inputs.sh.exit │ │ │ └── no-inputs.sh.stderr.exact │ │ ├── dictionaries │ │ │ ├── dictionary-mismatch.sh │ │ │ ├── dictionary-mismatch.sh.stderr.exact │ │ │ ├── golden.sh │ │ │ ├── setup │ │ │ └── setup_once │ │ ├── file-handling │ │ │ ├── directory-mirror.sh │ │ │ ├── directory-mirror.sh.stderr.exact │ │ │ └── directory-mirror.sh.stdout.exact │ │ ├── file-stat │ │ │ ├── compress-file-to-dir-without-write-perm.sh │ │ │ ├── compress-file-to-dir-without-write-perm.sh.stderr.exact │ │ │ ├── compress-file-to-file.sh │ │ │ ├── compress-file-to-file.sh.stderr.exact │ │ │ ├── compress-file-to-stdout.sh │ │ │ ├── compress-file-to-stdout.sh.stderr.exact │ │ │ ├── compress-stdin-to-file.sh │ │ │ ├── compress-stdin-to-file.sh.stderr.exact │ │ │ ├── compress-stdin-to-stdout.sh │ │ │ ├── compress-stdin-to-stdout.sh.stderr.exact │ │ │ ├── decompress-file-to-file.sh │ │ │ ├── decompress-file-to-file.sh.stderr.exact │ │ │ ├── decompress-file-to-stdout.sh │ │ │ ├── decompress-file-to-stdout.sh.stderr.exact │ │ │ ├── decompress-stdin-to-file.sh │ │ │ ├── decompress-stdin-to-file.sh.stderr.exact │ │ │ ├── decompress-stdin-to-stdout.sh │ │ │ └── decompress-stdin-to-stdout.sh.stderr.exact │ │ ├── progress │ │ │ ├── no-progress.sh │ │ │ ├── no-progress.sh.stderr.glob │ │ │ ├── progress.sh │ │ │ └── progress.sh.stderr.glob │ │ ├── run.py │ │ └── zstd-symlinks │ │ │ ├── setup │ │ │ ├── zstdcat.sh │ │ │ └── zstdcat.sh.stdout.exact │ ├── datagencli.c │ ├── decodecorpus.c │ ├── dict-files │ │ └── zero-weight-dict │ ├── external_matchfinder.c │ ├── external_matchfinder.h │ ├── fullbench.c │ ├── fuzz │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── block_decompress.c │ │ ├── block_round_trip.c │ │ ├── decompress_cross_format.c │ │ ├── decompress_dstSize_tooSmall.c │ │ ├── dictionary_decompress.c │ │ ├── dictionary_loader.c │ │ ├── dictionary_round_trip.c │ │ ├── dictionary_stream_round_trip.c │ │ ├── fse_read_ncount.c │ │ ├── fuzz.h │ │ ├── fuzz.py │ │ ├── fuzz_data_producer.c │ │ ├── fuzz_data_producer.h │ │ ├── fuzz_helpers.c │ │ ├── fuzz_helpers.h │ │ ├── fuzz_third_party_seq_prod.h │ │ ├── generate_sequences.c │ │ ├── huf_decompress.c │ │ ├── huf_round_trip.c │ │ ├── raw_dictionary_round_trip.c │ │ ├── regression_driver.c │ │ ├── seekable_roundtrip.c │ │ ├── seq_prod_fuzz_example │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── example_seq_prod.c │ │ ├── sequence_compression_api.c │ │ ├── simple_compress.c │ │ ├── simple_decompress.c │ │ ├── simple_round_trip.c │ │ ├── stream_decompress.c │ │ ├── stream_round_trip.c │ │ ├── zstd_frame_info.c │ │ ├── zstd_helpers.c │ │ └── zstd_helpers.h │ ├── fuzzer.c │ ├── golden-compression │ │ ├── PR-3517-block-splitter-corruption-test │ │ ├── http │ │ ├── huffman-compressed-larger │ │ └── large-literal-and-match-lengths │ ├── golden-decompression-errors │ │ ├── .gitignore │ │ ├── off0.bin.zst │ │ ├── truncated_huff_state.zst │ │ └── zeroSeq_extraneous.zst │ ├── golden-decompression │ │ ├── block-128k.zst │ │ ├── empty-block.zst │ │ ├── rle-first-block.zst │ │ └── zeroSeq_2B.zst │ ├── golden-dictionaries │ │ └── http-dict-missing-symbols │ ├── gzip │ │ ├── Makefile │ │ ├── gzip-env.sh │ │ ├── helin-segv.sh │ │ ├── help-version.sh │ │ ├── hufts-segv.gz │ │ ├── hufts.sh │ │ ├── init.cfg │ │ ├── init.sh │ │ ├── keep.sh │ │ ├── list.sh │ │ ├── memcpy-abuse.sh │ │ ├── mixed.sh │ │ ├── null-suffix-clobber.sh │ │ ├── stdin.sh │ │ ├── test-driver.sh │ │ ├── trailing-nul.sh │ │ ├── unpack-invalid.sh │ │ ├── z-suffix.sh │ │ ├── zdiff.sh │ │ ├── zgrep-context.sh │ │ ├── zgrep-f.sh │ │ ├── zgrep-signal.sh │ │ └── znew-k.sh │ ├── invalidDictionaries.c │ ├── largeDictionary.c │ ├── legacy.c │ ├── libzstd_builds.sh │ ├── longmatch.c │ ├── loremOut.c │ ├── loremOut.h │ ├── paramgrill.c │ ├── playTests.sh │ ├── poolTests.c │ ├── rateLimiter.py │ ├── regression │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── config.c │ │ ├── config.h │ │ ├── data.c │ │ ├── data.h │ │ ├── levels.h │ │ ├── method.c │ │ ├── method.h │ │ ├── result.c │ │ ├── result.h │ │ ├── results.csv │ │ └── test.c │ ├── roundTripCrash.c │ ├── seqgen.c │ ├── seqgen.h │ ├── test-license.py │ ├── test-variants.sh │ ├── test-zstd-versions.py │ └── zstreamtest.c │ └── zlibWrapper │ ├── .gitignore │ ├── BUCK │ ├── Makefile │ ├── README.md │ ├── examples │ ├── example.c │ ├── example_original.c │ ├── fitblk.c │ ├── fitblk_original.c │ ├── minigzip.c │ └── zwrapbench.c │ ├── gzclose.c │ ├── gzcompatibility.h │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── zstd_zlibwrapper.c │ └── zstd_zlibwrapper.h └── misc ├── 7-zip ├── 7z.h ├── 7zAlloc.c ├── 7zAlloc.h ├── 7zArcIn.c ├── 7zBuf.c ├── 7zBuf.h ├── 7zBuf2.c ├── 7zCrc.c ├── 7zCrc.h ├── 7zCrcOpt.c ├── 7zDec.c ├── 7zFile.c ├── 7zFile.h ├── 7zStream.c ├── 7zTypes.h ├── 7zVersion.h ├── 7zVersion.rc ├── 7zWindows.h ├── 7zip_gcc_c.mak ├── Aes.c ├── Aes.h ├── AesOpt.c ├── Alloc.c ├── Alloc.h ├── Asm_c.mak ├── Bcj2.c ├── Bcj2.h ├── Bcj2Enc.c ├── Blake2.h ├── Blake2s.c ├── Bra.c ├── Bra.h ├── Bra86.c ├── BraIA64.c ├── BwtSort.c ├── BwtSort.h ├── Compiler.h ├── CpuArch.c ├── CpuArch.h ├── Delta.c ├── Delta.h ├── DllSecur.c ├── DllSecur.h ├── HuffEnc.c ├── HuffEnc.h ├── LzFind.c ├── LzFind.h ├── LzFindMt.c ├── LzFindMt.h ├── LzFindOpt.c ├── LzHash.h ├── Lzma2Dec.c ├── Lzma2Dec.h ├── Lzma2DecMt.c ├── Lzma2DecMt.h ├── Lzma2Enc.c ├── Lzma2Enc.h ├── Lzma86.h ├── Lzma86Dec.c ├── Lzma86Enc.c ├── LzmaDec.c ├── LzmaDec.h ├── LzmaEnc.c ├── LzmaEnc.h ├── LzmaLib.c ├── LzmaLib.h ├── Md5.c ├── Md5.h ├── MtCoder.c ├── MtCoder.h ├── MtDec.c ├── MtDec.h ├── Ppmd.h ├── Ppmd7.c ├── Ppmd7.h ├── Ppmd7Dec.c ├── Ppmd7Enc.c ├── Ppmd7aDec.c ├── Ppmd8.c ├── Ppmd8.h ├── Ppmd8Dec.c ├── Ppmd8Enc.c ├── Precomp.h ├── RotateDefs.h ├── Sha1.c ├── Sha1.h ├── Sha1Opt.c ├── Sha256.c ├── Sha256.h ├── Sha256Opt.c ├── Sha3.c ├── Sha3.h ├── Sha512.c ├── Sha512.h ├── Sha512Opt.c ├── Sort.c ├── Sort.h ├── SwapBytes.c ├── SwapBytes.h ├── Threads.c ├── Threads.h ├── Xxh64.c ├── Xxh64.h ├── Xz.c ├── Xz.h ├── XzCrc64.c ├── XzCrc64.h ├── XzCrc64Opt.c ├── XzDec.c ├── XzEnc.c ├── XzEnc.h ├── XzIn.c ├── ZstdDec.c ├── ZstdDec.h ├── var_clang.mak ├── var_clang_arm64.mak ├── var_clang_x64.mak ├── var_clang_x86.mak ├── var_gcc.mak ├── var_gcc_arm64.mak ├── var_gcc_x64.mak ├── var_gcc_x86.mak ├── var_mac_arm64.mak ├── var_mac_x64.mak ├── warn_clang.mak ├── warn_clang_mac.mak └── warn_gcc.mak ├── density ├── density.h └── src │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── benches │ ├── density.rs │ ├── lz4.rs │ ├── snappy.rs │ └── utils.rs │ ├── benchmark.log │ └── src │ ├── algorithms.rs │ ├── algorithms │ ├── chameleon.rs │ ├── chameleon │ │ └── chameleon.rs │ ├── cheetah.rs │ ├── cheetah │ │ └── cheetah.rs │ ├── lion.rs │ └── lion │ │ └── lion.rs │ ├── buffer.rs │ ├── codec.rs │ ├── codec │ ├── codec.rs │ ├── decoder.rs │ ├── protection_state.rs │ └── quad_encoder.rs │ ├── errors.rs │ ├── errors │ ├── decode_error.rs │ └── encode_error.rs │ ├── io.rs │ ├── io │ ├── read_buffer.rs │ ├── read_signature.rs │ ├── write_buffer.rs │ └── write_signature.rs │ └── lib.rs ├── glza ├── GLZA.c ├── GLZA.h ├── GLZAcomp.c ├── GLZAcomp.h ├── GLZAcompress.c ├── GLZAcompress.h ├── GLZAdecode.c ├── GLZAdecode.h ├── GLZAencode.c ├── GLZAencode.h ├── GLZAformat.c ├── GLZAformat.h ├── GLZAmodel.c ├── GLZAmodel.h ├── Makefile └── readme.txt ├── kanzi-cpp ├── .github │ └── workflows │ │ ├── c-cpp.yml │ │ └── codeql.yml ├── LICENSE ├── README.md ├── bin │ └── .gitignore ├── kanzi.1.gz ├── lib │ └── .gitignore └── src │ ├── BitStreamException.hpp │ ├── CMakeLists.txt │ ├── Context.hpp │ ├── EntropyDecoder.hpp │ ├── EntropyEncoder.hpp │ ├── Error.hpp │ ├── Event.cpp │ ├── Event.hpp │ ├── Global.cpp │ ├── Global.hpp │ ├── InputBitStream.hpp │ ├── InputStream.hpp │ ├── Listener.hpp │ ├── Magic.hpp │ ├── Makefile │ ├── Makefile.tcmalloc │ ├── Memory.hpp │ ├── OutputBitStream.hpp │ ├── OutputStream.hpp │ ├── Predictor.hpp │ ├── Seekable.hpp │ ├── SliceArray.hpp │ ├── Transform.hpp │ ├── api │ ├── Compressor.cpp │ ├── Compressor.hpp │ ├── Decompressor.cpp │ └── Decompressor.hpp │ ├── app │ ├── BlockCompressor.cpp │ ├── BlockCompressor.hpp │ ├── BlockDecompressor.cpp │ ├── BlockDecompressor.hpp │ ├── InfoPrinter.cpp │ ├── InfoPrinter.hpp │ └── Kanzi.cpp │ ├── bitstream │ ├── DebugInputBitStream.cpp │ ├── DebugInputBitStream.hpp │ ├── DebugOutputBitStream.cpp │ ├── DebugOutputBitStream.hpp │ ├── DefaultInputBitStream.cpp │ ├── DefaultInputBitStream.hpp │ ├── DefaultOutputBitStream.cpp │ └── DefaultOutputBitStream.hpp │ ├── concurrent.hpp │ ├── configure │ ├── entropy │ ├── ANSRangeDecoder.cpp │ ├── ANSRangeDecoder.hpp │ ├── ANSRangeEncoder.cpp │ ├── ANSRangeEncoder.hpp │ ├── AdaptiveProbMap.hpp │ ├── BinaryEntropyDecoder.cpp │ ├── BinaryEntropyDecoder.hpp │ ├── BinaryEntropyEncoder.cpp │ ├── BinaryEntropyEncoder.hpp │ ├── CMPredictor.cpp │ ├── CMPredictor.hpp │ ├── EntropyDecoderFactory.hpp │ ├── EntropyEncoderFactory.hpp │ ├── EntropyUtils.cpp │ ├── EntropyUtils.hpp │ ├── ExpGolombDecoder.cpp │ ├── ExpGolombDecoder.hpp │ ├── ExpGolombEncoder.cpp │ ├── ExpGolombEncoder.hpp │ ├── FPAQDecoder.cpp │ ├── FPAQDecoder.hpp │ ├── FPAQEncoder.cpp │ ├── FPAQEncoder.hpp │ ├── HuffmanCommon.cpp │ ├── HuffmanCommon.hpp │ ├── HuffmanDecoder.cpp │ ├── HuffmanDecoder.hpp │ ├── HuffmanEncoder.cpp │ ├── HuffmanEncoder.hpp │ ├── NullEntropyDecoder.hpp │ ├── NullEntropyEncoder.hpp │ ├── RangeDecoder.cpp │ ├── RangeDecoder.hpp │ ├── RangeEncoder.cpp │ ├── RangeEncoder.hpp │ ├── TPAQPredictor.cpp │ └── TPAQPredictor.hpp │ ├── io │ ├── CompressedInputStream.cpp │ ├── CompressedInputStream.hpp │ ├── CompressedOutputStream.cpp │ ├── CompressedOutputStream.hpp │ ├── IOException.hpp │ ├── IOUtil.hpp │ └── NullOutputStream.hpp │ ├── msvc_dirent.hpp │ ├── test │ ├── TestBWT.cpp │ ├── TestCompressedStream.cpp │ ├── TestDefaultBitStream.cpp │ ├── TestEntropyCodec.cpp │ └── TestTransforms.cpp │ ├── transform │ ├── AliasCodec.cpp │ ├── AliasCodec.hpp │ ├── BWT.cpp │ ├── BWT.hpp │ ├── BWTBlockCodec.cpp │ ├── BWTBlockCodec.hpp │ ├── BWTS.cpp │ ├── BWTS.hpp │ ├── DivSufSort.cpp │ ├── DivSufSort.hpp │ ├── EXECodec.cpp │ ├── EXECodec.hpp │ ├── FSDCodec.cpp │ ├── FSDCodec.hpp │ ├── LZCodec.cpp │ ├── LZCodec.hpp │ ├── NullTransform.hpp │ ├── RLT.cpp │ ├── RLT.hpp │ ├── ROLZCodec.cpp │ ├── ROLZCodec.hpp │ ├── SBRT.cpp │ ├── SBRT.hpp │ ├── SRT.cpp │ ├── SRT.hpp │ ├── TextCodec.cpp │ ├── TextCodec.hpp │ ├── TransformFactory.hpp │ ├── TransformSequence.hpp │ ├── UTFCodec.cpp │ ├── UTFCodec.hpp │ ├── ZRLT.cpp │ └── ZRLT.hpp │ ├── types.hpp │ ├── util.hpp │ └── util │ ├── Clock.hpp │ ├── Printer.hpp │ ├── XXHash.hpp │ └── strings.hpp ├── nvcomp ├── .clang-format ├── .github │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ ├── documentation_request.md │ │ ├── feature_request.md │ │ └── submit_question.md │ └── workflows │ │ ├── labeler.yml │ │ ├── new-issues-to-triage-projects.yml │ │ └── stale.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CMakeLists.txt ├── Contributors.md ├── LICENSE ├── README.md ├── benchmarks │ ├── CMakeLists.txt │ ├── allgather_runall.py │ ├── benchmark_allgather.cpp │ ├── benchmark_ans_chunked.cu │ ├── benchmark_bitcomp_chunked.cu │ ├── benchmark_cascaded_chunked.cu │ ├── benchmark_common.h │ ├── benchmark_gdeflate_chunked.cu │ ├── benchmark_hlif.cpp │ ├── benchmark_hlif.hpp │ ├── benchmark_lz4_chunked.cu │ ├── benchmark_lz4_synth.cpp │ ├── benchmark_snappy_chunked.cu │ ├── benchmark_snappy_synth.cpp │ ├── benchmark_template_chunked.cuh │ └── text_to_binary.py ├── cmake │ └── nvcomp-config.cmake.in ├── doc │ ├── CompressionRatios.svg │ ├── CompressionThroughput.svg │ ├── DecompressionThroughput.svg │ ├── algorithms_overview.md │ ├── cascaded-example.jpg │ ├── highlevel_cpp_quickstart.md │ └── lowlevel_c_quickstart.md ├── examples │ ├── BatchData.h │ ├── BatchDataCPU.h │ ├── CMakeLists.txt │ ├── gdeflate_cpu_compression.cu │ ├── high_level_quickstart_example.cpp │ ├── low_level_quickstart_example.cpp │ ├── lz4_cpu_compression.cu │ ├── lz4_cpu_decompression.cu │ ├── nvcomp_gds.cu │ └── util.h ├── include │ ├── nvcomp.h │ ├── nvcomp.hpp │ └── nvcomp │ │ ├── ans.h │ │ ├── ans.hpp │ │ ├── bitcomp.h │ │ ├── bitcomp.hpp │ │ ├── cascaded.h │ │ ├── cascaded.hpp │ │ ├── gdeflate.h │ │ ├── gdeflate.hpp │ │ ├── lz4.h │ │ ├── lz4.hpp │ │ ├── nvcompManager.hpp │ │ ├── nvcompManagerFactory.hpp │ │ ├── shared_types.h │ │ ├── snappy.h │ │ └── snappy.hpp ├── scripts │ ├── benchmark.sh │ ├── build_dev_debug.sh │ └── build_dev_release.sh ├── src │ ├── BitPackGPU.cu │ ├── BitPackGPU.h │ ├── CMakeLists.txt │ ├── CascadedKernels.cuh │ ├── Check.cpp │ ├── Check.h │ ├── CudaUtils.cu │ ├── CudaUtils.h │ ├── DeltaGPU.cu │ ├── DeltaGPU.h │ ├── LZ4Kernels.cuh │ ├── LZ4Types.h │ ├── RunLengthEncodeGPU.cu │ ├── RunLengthEncodeGPU.h │ ├── SnappyBlockUtils.cuh │ ├── SnappyKernels.cuh │ ├── SnappyTypes.h │ ├── TempSpaceBroker.cpp │ ├── TempSpaceBroker.h │ ├── common.h │ ├── highlevel │ │ ├── ANSManager.cpp │ │ ├── ANSManager.hpp │ │ ├── BatchManager.hpp │ │ ├── BitcompManager.cu │ │ ├── BitcompManager.hpp │ │ ├── CascadedHlifKernels.cu │ │ ├── CascadedHlifKernels.h │ │ ├── CascadedManager.cpp │ │ ├── CascadedManager.hpp │ │ ├── CompressionConfigs.cpp │ │ ├── CompressionConfigs.hpp │ │ ├── GdeflateBatchManager.hpp │ │ ├── GdeflateManager.cpp │ │ ├── LZ4HlifKernels.cu │ │ ├── LZ4HlifKernels.h │ │ ├── LZ4Manager.cpp │ │ ├── LZ4Manager.hpp │ │ ├── ManagerBase.hpp │ │ ├── PinnedPtrs.hpp │ │ ├── SnappyHlifKernels.cu │ │ ├── SnappyHlifKernels.h │ │ ├── SnappyManager.cpp │ │ ├── SnappyManager.hpp │ │ ├── nvcompManagerFactory.cpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ └── PinnedPtrPool_test.cpp │ ├── lowlevel │ │ ├── BitcompBatch.cu │ │ ├── CascadedBatch.cu │ │ ├── LZ4Batch.cpp │ │ ├── LZ4CompressionKernels.cu │ │ ├── LZ4CompressionKernels.h │ │ ├── SnappyBatch.cpp │ │ ├── SnappyBatchKernels.cu │ │ ├── SnappyBatchKernels.h │ │ ├── ansBatch.cpp │ │ ├── gdeflateBatch.cpp │ │ ├── gdeflateKernels.cu │ │ ├── gdeflateKernels.h │ │ └── test │ │ │ └── CMakeLists.txt │ ├── nvcomp_api.cpp │ ├── nvcomp_common_deps │ │ ├── hlif_shared.cuh │ │ └── hlif_shared_types.hpp │ ├── nvcomp_cub.cuh │ ├── test │ │ ├── BitPackGPU_test.cpp │ │ ├── CMakeLists.txt │ │ ├── CudaUtils_test.cpp │ │ ├── DeltaGPU_test.cpp │ │ ├── RunLengthEncodeGPU_test.cpp │ │ ├── SnappyLargeTokens_test.cpp │ │ └── TempSpaceBroker_test.cpp │ ├── type_macros.h │ └── unpack.h └── tests │ ├── CMakeLists.txt │ ├── catch.hpp │ ├── test_ans_batch_c_api.c │ ├── test_batch_c_api.h │ ├── test_bitcomp.cpp │ ├── test_bitcomp_batch.cpp │ ├── test_bitcomp_batch_c_api.c │ ├── test_cascaded.cpp │ ├── test_cascaded_batch.cpp │ ├── test_cascadedbatch_c_api.c │ ├── test_common.h │ ├── test_gdeflate.cpp │ ├── test_gdeflate_batch_c_api.c │ ├── test_lz4.cpp │ ├── test_lz4batch_c_api.c │ ├── test_random_lz4.cpp │ └── test_snappy_batch_c_api.c └── zpaq ├── .gitignore ├── COPYING ├── Makefile ├── libzpaq.cpp ├── libzpaq.h ├── readme.txt ├── zpaq.cpp └── zpaq.pod /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/BUILD.md -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /bench/buggy_codecs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bench/buggy_codecs.cpp -------------------------------------------------------------------------------- /bench/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bench/codecs.h -------------------------------------------------------------------------------- /bench/cpuid1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bench/cpuid1.h -------------------------------------------------------------------------------- /bench/lz_codecs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bench/lz_codecs.cpp -------------------------------------------------------------------------------- /bench/lzbench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bench/lzbench.cpp -------------------------------------------------------------------------------- /bench/lzbench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bench/lzbench.h -------------------------------------------------------------------------------- /bench/misc_codecs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bench/misc_codecs.cpp -------------------------------------------------------------------------------- /bench/threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bench/threadpool.cpp -------------------------------------------------------------------------------- /bench/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bench/threadpool.h -------------------------------------------------------------------------------- /bench/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bench/util.h -------------------------------------------------------------------------------- /bwt/bzip2/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/CHANGES -------------------------------------------------------------------------------- /bwt/bzip2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/LICENSE -------------------------------------------------------------------------------- /bwt/bzip2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/Makefile -------------------------------------------------------------------------------- /bwt/bzip2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/README -------------------------------------------------------------------------------- /bwt/bzip2/blocksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/blocksort.c -------------------------------------------------------------------------------- /bwt/bzip2/bzdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/bzdiff -------------------------------------------------------------------------------- /bwt/bzip2/bzgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/bzgrep -------------------------------------------------------------------------------- /bwt/bzip2/bzip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/bzip.css -------------------------------------------------------------------------------- /bwt/bzip2/bzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/bzip2.c -------------------------------------------------------------------------------- /bwt/bzip2/bzip2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/bzip2.txt -------------------------------------------------------------------------------- /bwt/bzip2/bzip2recover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/bzip2recover.c -------------------------------------------------------------------------------- /bwt/bzip2/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/bzlib.c -------------------------------------------------------------------------------- /bwt/bzip2/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/bzlib.h -------------------------------------------------------------------------------- /bwt/bzip2/bzmore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/bzmore -------------------------------------------------------------------------------- /bwt/bzip2/bzmore.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/bzmore.1 -------------------------------------------------------------------------------- /bwt/bzip2/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/compress.c -------------------------------------------------------------------------------- /bwt/bzip2/crctable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/crctable.c -------------------------------------------------------------------------------- /bwt/bzip2/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/decompress.c -------------------------------------------------------------------------------- /bwt/bzip2/dlltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/dlltest.c -------------------------------------------------------------------------------- /bwt/bzip2/dlltest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/dlltest.dsp -------------------------------------------------------------------------------- /bwt/bzip2/format.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/format.pl -------------------------------------------------------------------------------- /bwt/bzip2/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/huffman.c -------------------------------------------------------------------------------- /bwt/bzip2/libbz2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/libbz2.def -------------------------------------------------------------------------------- /bwt/bzip2/libbz2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/libbz2.dsp -------------------------------------------------------------------------------- /bwt/bzip2/makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/makefile.msc -------------------------------------------------------------------------------- /bwt/bzip2/mk251.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/mk251.c -------------------------------------------------------------------------------- /bwt/bzip2/randtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/randtable.c -------------------------------------------------------------------------------- /bwt/bzip2/spewG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/spewG.c -------------------------------------------------------------------------------- /bwt/bzip2/unzcrash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip2/unzcrash.c -------------------------------------------------------------------------------- /bwt/bzip3/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/.clang-format -------------------------------------------------------------------------------- /bwt/bzip3/.gitattributes: -------------------------------------------------------------------------------- 1 | build-aux/* linguist-vendored 2 | -------------------------------------------------------------------------------- /bwt/bzip3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/.gitignore -------------------------------------------------------------------------------- /bwt/bzip3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/CMakeLists.txt -------------------------------------------------------------------------------- /bwt/bzip3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/LICENSE -------------------------------------------------------------------------------- /bwt/bzip3/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/Makefile.am -------------------------------------------------------------------------------- /bwt/bzip3/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/NEWS -------------------------------------------------------------------------------- /bwt/bzip3/PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/PORTING.md -------------------------------------------------------------------------------- /bwt/bzip3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/README.md -------------------------------------------------------------------------------- /bwt/bzip3/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/bootstrap.sh -------------------------------------------------------------------------------- /bwt/bzip3/bunzip3: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec bzip3 -d "$@" 4 | -------------------------------------------------------------------------------- /bwt/bzip3/bunzip3.1: -------------------------------------------------------------------------------- 1 | .so man1/bzip3.1 -------------------------------------------------------------------------------- /bwt/bzip3/bz3cat: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | exec bzip3 -Bcd "$@" 4 | -------------------------------------------------------------------------------- /bwt/bzip3/bz3cat.1: -------------------------------------------------------------------------------- 1 | .so man1/bzip3.1 -------------------------------------------------------------------------------- /bwt/bzip3/bz3grep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/bz3grep -------------------------------------------------------------------------------- /bwt/bzip3/bz3grep.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/bz3grep.1.in -------------------------------------------------------------------------------- /bwt/bzip3/bz3less: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | bz3cat "$@" | less 3 | -------------------------------------------------------------------------------- /bwt/bzip3/bz3less.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/bz3less.1.in -------------------------------------------------------------------------------- /bwt/bzip3/bz3more: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/bz3more -------------------------------------------------------------------------------- /bwt/bzip3/bz3more.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/bz3more.1.in -------------------------------------------------------------------------------- /bwt/bzip3/bz3most: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | bz3cat "$@" | most 3 | -------------------------------------------------------------------------------- /bwt/bzip3/bz3most.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/bz3most.1.in -------------------------------------------------------------------------------- /bwt/bzip3/bzip3.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/bzip3.1.in -------------------------------------------------------------------------------- /bwt/bzip3/bzip3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/bzip3.pc.in -------------------------------------------------------------------------------- /bwt/bzip3/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/configure.ac -------------------------------------------------------------------------------- /bwt/bzip3/include/yarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/include/yarg.h -------------------------------------------------------------------------------- /bwt/bzip3/src/libbz3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/src/libbz3.c -------------------------------------------------------------------------------- /bwt/bzip3/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/bzip3/src/main.c -------------------------------------------------------------------------------- /bwt/libbsc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/libbsc/AUTHORS -------------------------------------------------------------------------------- /bwt/libbsc/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/libbsc/CHANGES -------------------------------------------------------------------------------- /bwt/libbsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/libbsc/LICENSE -------------------------------------------------------------------------------- /bwt/libbsc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/libbsc/README -------------------------------------------------------------------------------- /bwt/libbsc/VERSION: -------------------------------------------------------------------------------- 1 | 3.3.11 -------------------------------------------------------------------------------- /bwt/libbsc/bsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/bwt/libbsc/bsc.cpp -------------------------------------------------------------------------------- /bwt/libbsc/libbsc/bwt/libcubwt/VERSION: -------------------------------------------------------------------------------- 1 | 1.6.3 -------------------------------------------------------------------------------- /bwt/libbsc/libbsc/bwt/libsais/VERSION: -------------------------------------------------------------------------------- 1 | 2.10.3 2 | -------------------------------------------------------------------------------- /doc/licenses/GPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/doc/licenses/GPL-2.0.txt -------------------------------------------------------------------------------- /doc/licenses/GPL-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/doc/licenses/GPL-3.txt -------------------------------------------------------------------------------- /doc/lzbench.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/doc/lzbench.7.txt -------------------------------------------------------------------------------- /doc/lzbench18_sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/doc/lzbench18_sorted.md -------------------------------------------------------------------------------- /doc/lzbench19_sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/doc/lzbench19_sorted.md -------------------------------------------------------------------------------- /doc/lzbench20_sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/doc/lzbench20_sorted.md -------------------------------------------------------------------------------- /lz/brieflz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brieflz/LICENSE -------------------------------------------------------------------------------- /lz/brieflz/brieflz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brieflz/brieflz.c -------------------------------------------------------------------------------- /lz/brieflz/brieflz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brieflz/brieflz.h -------------------------------------------------------------------------------- /lz/brieflz/depack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brieflz/depack.c -------------------------------------------------------------------------------- /lz/brieflz/depacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brieflz/depacks.c -------------------------------------------------------------------------------- /lz/brotli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/CHANGELOG.md -------------------------------------------------------------------------------- /lz/brotli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/LICENSE -------------------------------------------------------------------------------- /lz/brotli/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/README -------------------------------------------------------------------------------- /lz/brotli/dec/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/dec/decode.c -------------------------------------------------------------------------------- /lz/brotli/dec/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/dec/huffman.c -------------------------------------------------------------------------------- /lz/brotli/dec/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/dec/huffman.h -------------------------------------------------------------------------------- /lz/brotli/dec/prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/dec/prefix.c -------------------------------------------------------------------------------- /lz/brotli/dec/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/dec/prefix.h -------------------------------------------------------------------------------- /lz/brotli/dec/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/dec/state.c -------------------------------------------------------------------------------- /lz/brotli/dec/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/dec/state.h -------------------------------------------------------------------------------- /lz/brotli/enc/bit_cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/enc/bit_cost.c -------------------------------------------------------------------------------- /lz/brotli/enc/bit_cost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/enc/bit_cost.h -------------------------------------------------------------------------------- /lz/brotli/enc/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/enc/cluster.c -------------------------------------------------------------------------------- /lz/brotli/enc/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/enc/cluster.h -------------------------------------------------------------------------------- /lz/brotli/enc/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/enc/command.c -------------------------------------------------------------------------------- /lz/brotli/enc/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/enc/command.h -------------------------------------------------------------------------------- /lz/brotli/enc/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/enc/encode.c -------------------------------------------------------------------------------- /lz/brotli/enc/fast_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/enc/fast_log.c -------------------------------------------------------------------------------- /lz/brotli/enc/fast_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/enc/fast_log.h -------------------------------------------------------------------------------- /lz/brotli/enc/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/enc/hash.h -------------------------------------------------------------------------------- /lz/brotli/enc/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/enc/memory.c -------------------------------------------------------------------------------- /lz/brotli/enc/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/enc/memory.h -------------------------------------------------------------------------------- /lz/brotli/enc/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/enc/params.h -------------------------------------------------------------------------------- /lz/brotli/enc/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/enc/prefix.h -------------------------------------------------------------------------------- /lz/brotli/enc/quality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/enc/quality.h -------------------------------------------------------------------------------- /lz/brotli/enc/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/enc/state.h -------------------------------------------------------------------------------- /lz/brotli/tools/brotli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/brotli/tools/brotli.c -------------------------------------------------------------------------------- /lz/crush/crush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/crush/crush.cpp -------------------------------------------------------------------------------- /lz/crush/crush.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/crush/crush.hpp -------------------------------------------------------------------------------- /lz/fast-lzma2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/fast-lzma2/COPYING -------------------------------------------------------------------------------- /lz/fast-lzma2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/fast-lzma2/LICENSE -------------------------------------------------------------------------------- /lz/fast-lzma2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/fast-lzma2/Makefile -------------------------------------------------------------------------------- /lz/fast-lzma2/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/fast-lzma2/atomic.h -------------------------------------------------------------------------------- /lz/fast-lzma2/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/fast-lzma2/compiler.h -------------------------------------------------------------------------------- /lz/fast-lzma2/count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/fast-lzma2/count.h -------------------------------------------------------------------------------- /lz/fast-lzma2/fl2_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/fast-lzma2/fl2_pool.c -------------------------------------------------------------------------------- /lz/fast-lzma2/fl2_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/fast-lzma2/fl2_pool.h -------------------------------------------------------------------------------- /lz/fast-lzma2/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/fast-lzma2/mem.h -------------------------------------------------------------------------------- /lz/fast-lzma2/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/fast-lzma2/platform.h -------------------------------------------------------------------------------- /lz/fast-lzma2/radix_mf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/fast-lzma2/radix_mf.c -------------------------------------------------------------------------------- /lz/fast-lzma2/radix_mf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/fast-lzma2/radix_mf.h -------------------------------------------------------------------------------- /lz/fast-lzma2/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/fast-lzma2/util.c -------------------------------------------------------------------------------- /lz/fast-lzma2/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/fast-lzma2/util.h -------------------------------------------------------------------------------- /lz/fastlz/fastlz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/fastlz/fastlz.c -------------------------------------------------------------------------------- /lz/fastlz/fastlz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/fastlz/fastlz.h -------------------------------------------------------------------------------- /lz/gipfeli/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/gipfeli/COPYING -------------------------------------------------------------------------------- /lz/gipfeli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/gipfeli/Makefile -------------------------------------------------------------------------------- /lz/gipfeli/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/gipfeli/README -------------------------------------------------------------------------------- /lz/gipfeli/compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/gipfeli/compression.h -------------------------------------------------------------------------------- /lz/gipfeli/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/gipfeli/config.h -------------------------------------------------------------------------------- /lz/gipfeli/decompress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/gipfeli/decompress.cc -------------------------------------------------------------------------------- /lz/gipfeli/entropy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/gipfeli/entropy.cc -------------------------------------------------------------------------------- /lz/gipfeli/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/gipfeli/entropy.h -------------------------------------------------------------------------------- /lz/gipfeli/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/gipfeli/enum.h -------------------------------------------------------------------------------- /lz/gipfeli/gipfeli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/gipfeli/gipfeli.h -------------------------------------------------------------------------------- /lz/gipfeli/lz77.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/gipfeli/lz77.cc -------------------------------------------------------------------------------- /lz/gipfeli/lz77.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/gipfeli/lz77.h -------------------------------------------------------------------------------- /lz/gipfeli/read_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/gipfeli/read_bits.h -------------------------------------------------------------------------------- /lz/gipfeli/sinksource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/gipfeli/sinksource.h -------------------------------------------------------------------------------- /lz/gipfeli/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/gipfeli/stream.h -------------------------------------------------------------------------------- /lz/libcsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/LICENSE -------------------------------------------------------------------------------- /lz/libcsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/README.md -------------------------------------------------------------------------------- /lz/libcsc/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/Types.h -------------------------------------------------------------------------------- /lz/libcsc/csc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc.cpp -------------------------------------------------------------------------------- /lz/libcsc/csc_analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_analyzer.h -------------------------------------------------------------------------------- /lz/libcsc/csc_coder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_coder.cpp -------------------------------------------------------------------------------- /lz/libcsc/csc_coder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_coder.h -------------------------------------------------------------------------------- /lz/libcsc/csc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_common.h -------------------------------------------------------------------------------- /lz/libcsc/csc_dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_dec.cpp -------------------------------------------------------------------------------- /lz/libcsc/csc_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_dec.h -------------------------------------------------------------------------------- /lz/libcsc/csc_enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_enc.cpp -------------------------------------------------------------------------------- /lz/libcsc/csc_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_enc.h -------------------------------------------------------------------------------- /lz/libcsc/csc_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_filters.h -------------------------------------------------------------------------------- /lz/libcsc/csc_lz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_lz.cpp -------------------------------------------------------------------------------- /lz/libcsc/csc_lz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_lz.h -------------------------------------------------------------------------------- /lz/libcsc/csc_memio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_memio.cpp -------------------------------------------------------------------------------- /lz/libcsc/csc_memio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_memio.h -------------------------------------------------------------------------------- /lz/libcsc/csc_mf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_mf.cpp -------------------------------------------------------------------------------- /lz/libcsc/csc_mf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_mf.h -------------------------------------------------------------------------------- /lz/libcsc/csc_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_model.cpp -------------------------------------------------------------------------------- /lz/libcsc/csc_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_model.h -------------------------------------------------------------------------------- /lz/libcsc/csc_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_profiler.h -------------------------------------------------------------------------------- /lz/libcsc/csc_typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/csc_typedef.h -------------------------------------------------------------------------------- /lz/libcsc/decomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libcsc/decomp.cpp -------------------------------------------------------------------------------- /lz/libdeflate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libdeflate/.gitignore -------------------------------------------------------------------------------- /lz/libdeflate/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libdeflate/COPYING -------------------------------------------------------------------------------- /lz/libdeflate/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libdeflate/NEWS.md -------------------------------------------------------------------------------- /lz/libdeflate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libdeflate/README.md -------------------------------------------------------------------------------- /lz/libdeflate/scripts/libFuzzer/.gitignore: -------------------------------------------------------------------------------- 1 | */fuzz 2 | -------------------------------------------------------------------------------- /lz/liblzg/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/liblzg/checksum.c -------------------------------------------------------------------------------- /lz/liblzg/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/liblzg/decode.c -------------------------------------------------------------------------------- /lz/liblzg/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/liblzg/encode.c -------------------------------------------------------------------------------- /lz/liblzg/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/liblzg/internal.h -------------------------------------------------------------------------------- /lz/liblzg/lzg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/liblzg/lzg.h -------------------------------------------------------------------------------- /lz/liblzg/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/liblzg/version.c -------------------------------------------------------------------------------- /lz/libzling/libzling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libzling/libzling.cpp -------------------------------------------------------------------------------- /lz/libzling/libzling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/libzling/libzling.h -------------------------------------------------------------------------------- /lz/lizard/.gitignore: -------------------------------------------------------------------------------- 1 | # make install artefact 2 | liblizard.pc 3 | test/ 4 | -------------------------------------------------------------------------------- /lz/lizard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lizard/LICENSE -------------------------------------------------------------------------------- /lz/lizard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lizard/Makefile -------------------------------------------------------------------------------- /lz/lizard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lizard/README.md -------------------------------------------------------------------------------- /lz/lizard/entropy/fse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lizard/entropy/fse.h -------------------------------------------------------------------------------- /lz/lizard/entropy/hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lizard/entropy/hist.c -------------------------------------------------------------------------------- /lz/lizard/entropy/hist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lizard/entropy/hist.h -------------------------------------------------------------------------------- /lz/lizard/entropy/huf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lizard/entropy/huf.h -------------------------------------------------------------------------------- /lz/lizard/entropy/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lizard/entropy/mem.h -------------------------------------------------------------------------------- /lz/lizard/lizard_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lizard/lizard_frame.c -------------------------------------------------------------------------------- /lz/lizard/lizard_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lizard/lizard_frame.h -------------------------------------------------------------------------------- /lz/lz4/.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/.cirrus.yml -------------------------------------------------------------------------------- /lz/lz4/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/.clang-format -------------------------------------------------------------------------------- /lz/lz4/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/.gitattributes -------------------------------------------------------------------------------- /lz/lz4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/.gitignore -------------------------------------------------------------------------------- /lz/lz4/CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/CODING_STYLE -------------------------------------------------------------------------------- /lz/lz4/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/INSTALL -------------------------------------------------------------------------------- /lz/lz4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/LICENSE -------------------------------------------------------------------------------- /lz/lz4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/Makefile -------------------------------------------------------------------------------- /lz/lz4/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/Makefile.inc -------------------------------------------------------------------------------- /lz/lz4/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/NEWS -------------------------------------------------------------------------------- /lz/lz4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/README.md -------------------------------------------------------------------------------- /lz/lz4/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/SECURITY.md -------------------------------------------------------------------------------- /lz/lz4/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/appveyor.yml -------------------------------------------------------------------------------- /lz/lz4/build/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/build/.gitignore -------------------------------------------------------------------------------- /lz/lz4/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/build/README.md -------------------------------------------------------------------------------- /lz/lz4/contrib/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /lz/lz4/contrib/debian/dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /lz/lz4/contrib/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lz/lz4/contrib/gen_manual/.gitignore: -------------------------------------------------------------------------------- 1 | # build artefact 2 | gen_manual 3 | -------------------------------------------------------------------------------- /lz/lz4/examples/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/examples/COPYING -------------------------------------------------------------------------------- /lz/lz4/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/examples/Makefile -------------------------------------------------------------------------------- /lz/lz4/lib/.gitignore: -------------------------------------------------------------------------------- 1 | # make install artefact 2 | liblz4.pc 3 | -------------------------------------------------------------------------------- /lz/lz4/lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/lib/LICENSE -------------------------------------------------------------------------------- /lz/lz4/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/lib/Makefile -------------------------------------------------------------------------------- /lz/lz4/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/lib/README.md -------------------------------------------------------------------------------- /lz/lz4/lib/liblz4.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/lib/liblz4.pc.in -------------------------------------------------------------------------------- /lz/lz4/lib/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/lib/lz4.c -------------------------------------------------------------------------------- /lz/lz4/lib/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/lib/lz4.h -------------------------------------------------------------------------------- /lz/lz4/lib/lz4file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/lib/lz4file.c -------------------------------------------------------------------------------- /lz/lz4/lib/lz4file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/lib/lz4file.h -------------------------------------------------------------------------------- /lz/lz4/lib/lz4frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/lib/lz4frame.c -------------------------------------------------------------------------------- /lz/lz4/lib/lz4frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/lib/lz4frame.h -------------------------------------------------------------------------------- /lz/lz4/lib/lz4hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/lib/lz4hc.c -------------------------------------------------------------------------------- /lz/lz4/lib/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/lib/lz4hc.h -------------------------------------------------------------------------------- /lz/lz4/lib/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/lib/xxhash.c -------------------------------------------------------------------------------- /lz/lz4/lib/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/lib/xxhash.h -------------------------------------------------------------------------------- /lz/lz4/ossfuzz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/ossfuzz/Makefile -------------------------------------------------------------------------------- /lz/lz4/ossfuzz/fuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/ossfuzz/fuzz.h -------------------------------------------------------------------------------- /lz/lz4/programs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/programs/COPYING -------------------------------------------------------------------------------- /lz/lz4/programs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/programs/Makefile -------------------------------------------------------------------------------- /lz/lz4/programs/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/programs/bench.c -------------------------------------------------------------------------------- /lz/lz4/programs/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/programs/bench.h -------------------------------------------------------------------------------- /lz/lz4/programs/lorem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/programs/lorem.c -------------------------------------------------------------------------------- /lz/lz4/programs/lorem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/programs/lorem.h -------------------------------------------------------------------------------- /lz/lz4/programs/lz4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/programs/lz4.1 -------------------------------------------------------------------------------- /lz/lz4/programs/lz4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/programs/lz4.1.md -------------------------------------------------------------------------------- /lz/lz4/programs/lz4cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/programs/lz4cli.c -------------------------------------------------------------------------------- /lz/lz4/programs/lz4io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/programs/lz4io.c -------------------------------------------------------------------------------- /lz/lz4/programs/lz4io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/programs/lz4io.h -------------------------------------------------------------------------------- /lz/lz4/programs/timefn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/programs/timefn.c -------------------------------------------------------------------------------- /lz/lz4/programs/timefn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/programs/timefn.h -------------------------------------------------------------------------------- /lz/lz4/programs/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/programs/util.c -------------------------------------------------------------------------------- /lz/lz4/programs/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/programs/util.h -------------------------------------------------------------------------------- /lz/lz4/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/tests/.gitignore -------------------------------------------------------------------------------- /lz/lz4/tests/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/tests/COPYING -------------------------------------------------------------------------------- /lz/lz4/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/tests/Makefile -------------------------------------------------------------------------------- /lz/lz4/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/tests/README.md -------------------------------------------------------------------------------- /lz/lz4/tests/abiTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/tests/abiTest.c -------------------------------------------------------------------------------- /lz/lz4/tests/checkTag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/tests/checkTag.c -------------------------------------------------------------------------------- /lz/lz4/tests/datagen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/tests/datagen.c -------------------------------------------------------------------------------- /lz/lz4/tests/datagen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/tests/datagen.h -------------------------------------------------------------------------------- /lz/lz4/tests/frametest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/tests/frametest.c -------------------------------------------------------------------------------- /lz/lz4/tests/fullbench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/tests/fullbench.c -------------------------------------------------------------------------------- /lz/lz4/tests/fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/tests/fuzzer.c -------------------------------------------------------------------------------- /lz/lz4/tests/loremOut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/tests/loremOut.c -------------------------------------------------------------------------------- /lz/lz4/tests/loremOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lz4/tests/loremOut.h -------------------------------------------------------------------------------- /lz/lzav/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzav/LICENSE -------------------------------------------------------------------------------- /lz/lzav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzav/README.md -------------------------------------------------------------------------------- /lz/lzav/lzav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzav/lzav.h -------------------------------------------------------------------------------- /lz/lzf/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzf/lzf.h -------------------------------------------------------------------------------- /lz/lzf/lzfP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzf/lzfP.h -------------------------------------------------------------------------------- /lz/lzf/lzf_c_ultra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzf/lzf_c_ultra.c -------------------------------------------------------------------------------- /lz/lzf/lzf_c_very.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzf/lzf_c_very.c -------------------------------------------------------------------------------- /lz/lzf/lzf_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzf/lzf_d.c -------------------------------------------------------------------------------- /lz/lzfse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzfse/LICENSE -------------------------------------------------------------------------------- /lz/lzfse/lzfse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzfse/lzfse.h -------------------------------------------------------------------------------- /lz/lzfse/lzfse_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzfse/lzfse_decode.c -------------------------------------------------------------------------------- /lz/lzfse/lzfse_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzfse/lzfse_encode.c -------------------------------------------------------------------------------- /lz/lzfse/lzfse_fse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzfse/lzfse_fse.c -------------------------------------------------------------------------------- /lz/lzfse/lzfse_fse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzfse/lzfse_fse.h -------------------------------------------------------------------------------- /lz/lzfse/lzvn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzfse/lzvn.h -------------------------------------------------------------------------------- /lz/lzfse/lzvn_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzfse/lzvn_decode.c -------------------------------------------------------------------------------- /lz/lzham/include/lzham.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzham/include/lzham.h -------------------------------------------------------------------------------- /lz/lzham/include/zlib.h: -------------------------------------------------------------------------------- 1 | #define LZHAM_DEFINE_ZLIB_API 2 | #include "lzham.h" -------------------------------------------------------------------------------- /lz/lzjb/lzjb2010.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzjb/lzjb2010.c -------------------------------------------------------------------------------- /lz/lzjb/lzjb2010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzjb/lzjb2010.h -------------------------------------------------------------------------------- /lz/lzlib/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/AUTHORS -------------------------------------------------------------------------------- /lz/lzlib/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/COPYING -------------------------------------------------------------------------------- /lz/lzlib/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/COPYING.GPL -------------------------------------------------------------------------------- /lz/lzlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/ChangeLog -------------------------------------------------------------------------------- /lz/lzlib/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/INSTALL -------------------------------------------------------------------------------- /lz/lzlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/Makefile.in -------------------------------------------------------------------------------- /lz/lzlib/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/NEWS -------------------------------------------------------------------------------- /lz/lzlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/README -------------------------------------------------------------------------------- /lz/lzlib/bbexample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/bbexample.c -------------------------------------------------------------------------------- /lz/lzlib/carg_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/carg_parser.c -------------------------------------------------------------------------------- /lz/lzlib/carg_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/carg_parser.h -------------------------------------------------------------------------------- /lz/lzlib/cbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/cbuffer.c -------------------------------------------------------------------------------- /lz/lzlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/configure -------------------------------------------------------------------------------- /lz/lzlib/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/decoder.c -------------------------------------------------------------------------------- /lz/lzlib/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/decoder.h -------------------------------------------------------------------------------- /lz/lzlib/doc/lzlib.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/doc/lzlib.info -------------------------------------------------------------------------------- /lz/lzlib/doc/lzlib.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/doc/lzlib.texi -------------------------------------------------------------------------------- /lz/lzlib/doc/minilzip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/doc/minilzip.1 -------------------------------------------------------------------------------- /lz/lzlib/encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/encoder.c -------------------------------------------------------------------------------- /lz/lzlib/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/encoder.h -------------------------------------------------------------------------------- /lz/lzlib/encoder_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/encoder_base.c -------------------------------------------------------------------------------- /lz/lzlib/encoder_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/encoder_base.h -------------------------------------------------------------------------------- /lz/lzlib/fast_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/fast_encoder.c -------------------------------------------------------------------------------- /lz/lzlib/fast_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/fast_encoder.h -------------------------------------------------------------------------------- /lz/lzlib/ffexample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/ffexample.c -------------------------------------------------------------------------------- /lz/lzlib/lzcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/lzcheck.c -------------------------------------------------------------------------------- /lz/lzlib/lzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/lzip.h -------------------------------------------------------------------------------- /lz/lzlib/lzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/lzlib.c -------------------------------------------------------------------------------- /lz/lzlib/lzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/lzlib.h -------------------------------------------------------------------------------- /lz/lzlib/minilzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzlib/minilzip.c -------------------------------------------------------------------------------- /lz/lzmat/lzmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzmat/lzmat.h -------------------------------------------------------------------------------- /lz/lzmat/lzmat_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzmat/lzmat_dec.c -------------------------------------------------------------------------------- /lz/lzmat/lzmat_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzmat/lzmat_enc.c -------------------------------------------------------------------------------- /lz/lzo/compr1b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/compr1b.h -------------------------------------------------------------------------------- /lz/lzo/compr1c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/compr1c.h -------------------------------------------------------------------------------- /lz/lzo/config1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/config1.h -------------------------------------------------------------------------------- /lz/lzo/config1a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/config1a.h -------------------------------------------------------------------------------- /lz/lzo/config1b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/config1b.h -------------------------------------------------------------------------------- /lz/lzo/config1c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/config1c.h -------------------------------------------------------------------------------- /lz/lzo/config1f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/config1f.h -------------------------------------------------------------------------------- /lz/lzo/config1x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/config1x.h -------------------------------------------------------------------------------- /lz/lzo/config1y.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/config1y.h -------------------------------------------------------------------------------- /lz/lzo/config1z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/config1z.h -------------------------------------------------------------------------------- /lz/lzo/config2a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/config2a.h -------------------------------------------------------------------------------- /lz/lzo/lzo1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1.c -------------------------------------------------------------------------------- /lz/lzo/lzo1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1.h -------------------------------------------------------------------------------- /lz/lzo/lzo1_99.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1_99.c -------------------------------------------------------------------------------- /lz/lzo/lzo1_cm.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1_cm.ch -------------------------------------------------------------------------------- /lz/lzo/lzo1_d.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1_d.ch -------------------------------------------------------------------------------- /lz/lzo/lzo1a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1a.c -------------------------------------------------------------------------------- /lz/lzo/lzo1a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1a.h -------------------------------------------------------------------------------- /lz/lzo/lzo1a_99.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1a_99.c -------------------------------------------------------------------------------- /lz/lzo/lzo1a_cm.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1a_cm.ch -------------------------------------------------------------------------------- /lz/lzo/lzo1a_cr.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1a_cr.ch -------------------------------------------------------------------------------- /lz/lzo/lzo1a_de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1a_de.h -------------------------------------------------------------------------------- /lz/lzo/lzo1b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b.h -------------------------------------------------------------------------------- /lz/lzo/lzo1b_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_1.c -------------------------------------------------------------------------------- /lz/lzo/lzo1b_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_2.c -------------------------------------------------------------------------------- /lz/lzo/lzo1b_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_3.c -------------------------------------------------------------------------------- /lz/lzo/lzo1b_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_4.c -------------------------------------------------------------------------------- /lz/lzo/lzo1b_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_5.c -------------------------------------------------------------------------------- /lz/lzo/lzo1b_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_6.c -------------------------------------------------------------------------------- /lz/lzo/lzo1b_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_7.c -------------------------------------------------------------------------------- /lz/lzo/lzo1b_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_8.c -------------------------------------------------------------------------------- /lz/lzo/lzo1b_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_9.c -------------------------------------------------------------------------------- /lz/lzo/lzo1b_99.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_99.c -------------------------------------------------------------------------------- /lz/lzo/lzo1b_9x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_9x.c -------------------------------------------------------------------------------- /lz/lzo/lzo1b_c.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_c.ch -------------------------------------------------------------------------------- /lz/lzo/lzo1b_cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_cc.c -------------------------------------------------------------------------------- /lz/lzo/lzo1b_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_cc.h -------------------------------------------------------------------------------- /lz/lzo/lzo1b_cm.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_cm.ch -------------------------------------------------------------------------------- /lz/lzo/lzo1b_cr.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_cr.ch -------------------------------------------------------------------------------- /lz/lzo/lzo1b_d.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_d.ch -------------------------------------------------------------------------------- /lz/lzo/lzo1b_d1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_d1.c -------------------------------------------------------------------------------- /lz/lzo/lzo1b_d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_d2.c -------------------------------------------------------------------------------- /lz/lzo/lzo1b_de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_de.h -------------------------------------------------------------------------------- /lz/lzo/lzo1b_r.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_r.ch -------------------------------------------------------------------------------- /lz/lzo/lzo1b_rr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_rr.c -------------------------------------------------------------------------------- /lz/lzo/lzo1b_sm.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_sm.ch -------------------------------------------------------------------------------- /lz/lzo/lzo1b_tm.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_tm.ch -------------------------------------------------------------------------------- /lz/lzo/lzo1b_xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1b_xx.c -------------------------------------------------------------------------------- /lz/lzo/lzo1c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c.h -------------------------------------------------------------------------------- /lz/lzo/lzo1c_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_1.c -------------------------------------------------------------------------------- /lz/lzo/lzo1c_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_2.c -------------------------------------------------------------------------------- /lz/lzo/lzo1c_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_3.c -------------------------------------------------------------------------------- /lz/lzo/lzo1c_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_4.c -------------------------------------------------------------------------------- /lz/lzo/lzo1c_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_5.c -------------------------------------------------------------------------------- /lz/lzo/lzo1c_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_6.c -------------------------------------------------------------------------------- /lz/lzo/lzo1c_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_7.c -------------------------------------------------------------------------------- /lz/lzo/lzo1c_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_8.c -------------------------------------------------------------------------------- /lz/lzo/lzo1c_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_9.c -------------------------------------------------------------------------------- /lz/lzo/lzo1c_99.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_99.c -------------------------------------------------------------------------------- /lz/lzo/lzo1c_9x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_9x.c -------------------------------------------------------------------------------- /lz/lzo/lzo1c_cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_cc.c -------------------------------------------------------------------------------- /lz/lzo/lzo1c_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_cc.h -------------------------------------------------------------------------------- /lz/lzo/lzo1c_d1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_d1.c -------------------------------------------------------------------------------- /lz/lzo/lzo1c_d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_d2.c -------------------------------------------------------------------------------- /lz/lzo/lzo1c_rr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_rr.c -------------------------------------------------------------------------------- /lz/lzo/lzo1c_xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1c_xx.c -------------------------------------------------------------------------------- /lz/lzo/lzo1f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1f.h -------------------------------------------------------------------------------- /lz/lzo/lzo1f_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1f_1.c -------------------------------------------------------------------------------- /lz/lzo/lzo1f_9x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1f_9x.c -------------------------------------------------------------------------------- /lz/lzo/lzo1f_d.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1f_d.ch -------------------------------------------------------------------------------- /lz/lzo/lzo1f_d1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1f_d1.c -------------------------------------------------------------------------------- /lz/lzo/lzo1f_d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1f_d2.c -------------------------------------------------------------------------------- /lz/lzo/lzo1x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1x.h -------------------------------------------------------------------------------- /lz/lzo/lzo1x_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1x_1.c -------------------------------------------------------------------------------- /lz/lzo/lzo1x_1k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1x_1k.c -------------------------------------------------------------------------------- /lz/lzo/lzo1x_1l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1x_1l.c -------------------------------------------------------------------------------- /lz/lzo/lzo1x_1o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1x_1o.c -------------------------------------------------------------------------------- /lz/lzo/lzo1x_9x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1x_9x.c -------------------------------------------------------------------------------- /lz/lzo/lzo1x_c.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1x_c.ch -------------------------------------------------------------------------------- /lz/lzo/lzo1x_d.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1x_d.ch -------------------------------------------------------------------------------- /lz/lzo/lzo1x_d1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1x_d1.c -------------------------------------------------------------------------------- /lz/lzo/lzo1x_d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1x_d2.c -------------------------------------------------------------------------------- /lz/lzo/lzo1x_d3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1x_d3.c -------------------------------------------------------------------------------- /lz/lzo/lzo1x_o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1x_o.c -------------------------------------------------------------------------------- /lz/lzo/lzo1x_oo.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1x_oo.ch -------------------------------------------------------------------------------- /lz/lzo/lzo1y.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1y.h -------------------------------------------------------------------------------- /lz/lzo/lzo1y_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1y_1.c -------------------------------------------------------------------------------- /lz/lzo/lzo1y_9x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1y_9x.c -------------------------------------------------------------------------------- /lz/lzo/lzo1y_d1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1y_d1.c -------------------------------------------------------------------------------- /lz/lzo/lzo1y_d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1y_d2.c -------------------------------------------------------------------------------- /lz/lzo/lzo1y_d3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1y_d3.c -------------------------------------------------------------------------------- /lz/lzo/lzo1y_o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1y_o.c -------------------------------------------------------------------------------- /lz/lzo/lzo1z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1z.h -------------------------------------------------------------------------------- /lz/lzo/lzo1z_9x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1z_9x.c -------------------------------------------------------------------------------- /lz/lzo/lzo1z_d1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1z_d1.c -------------------------------------------------------------------------------- /lz/lzo/lzo1z_d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1z_d2.c -------------------------------------------------------------------------------- /lz/lzo/lzo1z_d3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo1z_d3.c -------------------------------------------------------------------------------- /lz/lzo/lzo2a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo2a.h -------------------------------------------------------------------------------- /lz/lzo/lzo2a_9x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo2a_9x.c -------------------------------------------------------------------------------- /lz/lzo/lzo2a_d.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo2a_d.ch -------------------------------------------------------------------------------- /lz/lzo/lzo2a_d1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo2a_d1.c -------------------------------------------------------------------------------- /lz/lzo/lzo2a_d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo2a_d2.c -------------------------------------------------------------------------------- /lz/lzo/lzo_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo_asm.h -------------------------------------------------------------------------------- /lz/lzo/lzo_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo_conf.h -------------------------------------------------------------------------------- /lz/lzo/lzo_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo_crc.c -------------------------------------------------------------------------------- /lz/lzo/lzo_dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo_dict.h -------------------------------------------------------------------------------- /lz/lzo/lzo_dll.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo_dll.ch -------------------------------------------------------------------------------- /lz/lzo/lzo_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo_func.h -------------------------------------------------------------------------------- /lz/lzo/lzo_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo_init.c -------------------------------------------------------------------------------- /lz/lzo/lzo_mchw.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo_mchw.ch -------------------------------------------------------------------------------- /lz/lzo/lzo_ptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo_ptr.c -------------------------------------------------------------------------------- /lz/lzo/lzo_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo_ptr.h -------------------------------------------------------------------------------- /lz/lzo/lzo_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo_str.c -------------------------------------------------------------------------------- /lz/lzo/lzo_supp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo_supp.h -------------------------------------------------------------------------------- /lz/lzo/lzo_swd.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo_swd.ch -------------------------------------------------------------------------------- /lz/lzo/lzo_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzo_util.c -------------------------------------------------------------------------------- /lz/lzo/lzoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzoconf.h -------------------------------------------------------------------------------- /lz/lzo/lzodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzodefs.h -------------------------------------------------------------------------------- /lz/lzo/lzoutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/lzoutil.h -------------------------------------------------------------------------------- /lz/lzo/stats1a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/stats1a.h -------------------------------------------------------------------------------- /lz/lzo/stats1b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/stats1b.h -------------------------------------------------------------------------------- /lz/lzo/stats1c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzo/stats1c.h -------------------------------------------------------------------------------- /lz/lzrw/lzrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzrw/lzrw.h -------------------------------------------------------------------------------- /lz/lzrw/lzrw1-a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzrw/lzrw1-a.c -------------------------------------------------------------------------------- /lz/lzrw/lzrw1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzrw/lzrw1.c -------------------------------------------------------------------------------- /lz/lzrw/lzrw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzrw/lzrw2.c -------------------------------------------------------------------------------- /lz/lzrw/lzrw3-a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzrw/lzrw3-a.c -------------------------------------------------------------------------------- /lz/lzrw/lzrw3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzrw/lzrw3.c -------------------------------------------------------------------------------- /lz/lzsse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzsse/LICENSE -------------------------------------------------------------------------------- /lz/lzsse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzsse/README.md -------------------------------------------------------------------------------- /lz/lzsse/lzsse2/lzsse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzsse/lzsse2/lzsse2.h -------------------------------------------------------------------------------- /lz/lzsse/lzsse4/lzsse4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzsse/lzsse4/lzsse4.h -------------------------------------------------------------------------------- /lz/lzsse/lzsse8/lzsse8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/lzsse/lzsse8/lzsse8.h -------------------------------------------------------------------------------- /lz/memlz/memlz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/memlz/memlz.h -------------------------------------------------------------------------------- /lz/slz/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/slz/.gitignore -------------------------------------------------------------------------------- /lz/slz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/slz/LICENSE -------------------------------------------------------------------------------- /lz/slz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/slz/Makefile -------------------------------------------------------------------------------- /lz/slz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/slz/README -------------------------------------------------------------------------------- /lz/slz/VERSION: -------------------------------------------------------------------------------- 1 | 1.2.1 2 | -------------------------------------------------------------------------------- /lz/slz/src/slz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/slz/src/slz.c -------------------------------------------------------------------------------- /lz/slz/src/slz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/slz/src/slz.h -------------------------------------------------------------------------------- /lz/slz/src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/slz/src/tables.h -------------------------------------------------------------------------------- /lz/slz/src/zdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/slz/src/zdec.c -------------------------------------------------------------------------------- /lz/slz/src/zenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/slz/src/zenc.c -------------------------------------------------------------------------------- /lz/slz/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/slz/tests/index.html -------------------------------------------------------------------------------- /lz/slz/tests/noncomp.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/slz/tests/noncomp.bin -------------------------------------------------------------------------------- /lz/slz/tools/dump_len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/slz/tools/dump_len.c -------------------------------------------------------------------------------- /lz/slz/tools/mkcrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/slz/tools/mkcrc.sh -------------------------------------------------------------------------------- /lz/slz/tools/mkfhdist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/slz/tools/mkfhdist.sh -------------------------------------------------------------------------------- /lz/slz/tools/mkhuff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/slz/tools/mkhuff.sh -------------------------------------------------------------------------------- /lz/slz/tools/mklen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/slz/tools/mklen.sh -------------------------------------------------------------------------------- /lz/snappy/.bazelrc: -------------------------------------------------------------------------------- 1 | # googletest requires C++14 or above 2 | build --cxxopt='-std=c++17' 3 | -------------------------------------------------------------------------------- /lz/snappy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/snappy/.gitignore -------------------------------------------------------------------------------- /lz/snappy/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/snappy/.gitmodules -------------------------------------------------------------------------------- /lz/snappy/AUTHORS: -------------------------------------------------------------------------------- 1 | opensource@google.com 2 | -------------------------------------------------------------------------------- /lz/snappy/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/snappy/BUILD.bazel -------------------------------------------------------------------------------- /lz/snappy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/snappy/CMakeLists.txt -------------------------------------------------------------------------------- /lz/snappy/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/snappy/COPYING -------------------------------------------------------------------------------- /lz/snappy/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/snappy/MODULE.bazel -------------------------------------------------------------------------------- /lz/snappy/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/snappy/NEWS -------------------------------------------------------------------------------- /lz/snappy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/snappy/README.md -------------------------------------------------------------------------------- /lz/snappy/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/snappy/WORKSPACE -------------------------------------------------------------------------------- /lz/snappy/WORKSPACE.bzlmod: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lz/snappy/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/snappy/docs/README.md -------------------------------------------------------------------------------- /lz/snappy/snappy-c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/snappy/snappy-c.cc -------------------------------------------------------------------------------- /lz/snappy/snappy-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/snappy/snappy-c.h -------------------------------------------------------------------------------- /lz/snappy/snappy-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/snappy/snappy-test.cc -------------------------------------------------------------------------------- /lz/snappy/snappy-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/snappy/snappy-test.h -------------------------------------------------------------------------------- /lz/snappy/snappy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/snappy/snappy.cc -------------------------------------------------------------------------------- /lz/snappy/snappy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/snappy/snappy.h -------------------------------------------------------------------------------- /lz/tamp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/tamp/LICENSE -------------------------------------------------------------------------------- /lz/tamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/tamp/README.md -------------------------------------------------------------------------------- /lz/tamp/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/tamp/common.c -------------------------------------------------------------------------------- /lz/tamp/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/tamp/common.h -------------------------------------------------------------------------------- /lz/tamp/compressor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/tamp/compressor.c -------------------------------------------------------------------------------- /lz/tamp/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/tamp/compressor.h -------------------------------------------------------------------------------- /lz/tamp/decompressor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/tamp/decompressor.c -------------------------------------------------------------------------------- /lz/tamp/decompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/tamp/decompressor.h -------------------------------------------------------------------------------- /lz/tornado/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/tornado/Common.cpp -------------------------------------------------------------------------------- /lz/tornado/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/tornado/Common.h -------------------------------------------------------------------------------- /lz/tornado/Compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/tornado/Compression.h -------------------------------------------------------------------------------- /lz/tornado/Tornado.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/tornado/Tornado.cpp -------------------------------------------------------------------------------- /lz/tornado/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/tornado/license.txt -------------------------------------------------------------------------------- /lz/tornado/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/tornado/main.cpp -------------------------------------------------------------------------------- /lz/tornado/tor_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/tornado/tor_test.cpp -------------------------------------------------------------------------------- /lz/tornado/tor_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/tornado/tor_test.h -------------------------------------------------------------------------------- /lz/ucl/acc/ACC_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/ACC_LICENSE -------------------------------------------------------------------------------- /lz/ucl/acc/acc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc.h -------------------------------------------------------------------------------- /lz/ucl/acc/acc_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc_arch.h -------------------------------------------------------------------------------- /lz/ucl/acc/acc_auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc_auto.h -------------------------------------------------------------------------------- /lz/ucl/acc/acc_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc_cc.h -------------------------------------------------------------------------------- /lz/ucl/acc/acc_chk.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc_chk.ch -------------------------------------------------------------------------------- /lz/ucl/acc/acc_chkr.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc_chkr.ch -------------------------------------------------------------------------------- /lz/ucl/acc/acc_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc_cxx.h -------------------------------------------------------------------------------- /lz/ucl/acc/acc_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc_defs.h -------------------------------------------------------------------------------- /lz/ucl/acc/acc_incd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc_incd.h -------------------------------------------------------------------------------- /lz/ucl/acc/acc_ince.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc_ince.h -------------------------------------------------------------------------------- /lz/ucl/acc/acc_inci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc_inci.h -------------------------------------------------------------------------------- /lz/ucl/acc/acc_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc_init.h -------------------------------------------------------------------------------- /lz/ucl/acc/acc_lib.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc_lib.ch -------------------------------------------------------------------------------- /lz/ucl/acc/acc_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc_lib.h -------------------------------------------------------------------------------- /lz/ucl/acc/acc_mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc_mm.h -------------------------------------------------------------------------------- /lz/ucl/acc/acc_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc_os.h -------------------------------------------------------------------------------- /lz/ucl/acc/acc_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/acc/acc_type.h -------------------------------------------------------------------------------- /lz/ucl/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/alloc.c -------------------------------------------------------------------------------- /lz/ucl/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/config.h -------------------------------------------------------------------------------- /lz/ucl/getbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/getbit.h -------------------------------------------------------------------------------- /lz/ucl/n2_99.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/n2_99.ch -------------------------------------------------------------------------------- /lz/ucl/n2b_99.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/n2b_99.c -------------------------------------------------------------------------------- /lz/ucl/n2b_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/n2b_d.c -------------------------------------------------------------------------------- /lz/ucl/n2b_ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/n2b_ds.c -------------------------------------------------------------------------------- /lz/ucl/n2b_to.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/n2b_to.c -------------------------------------------------------------------------------- /lz/ucl/n2d_99.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/n2d_99.c -------------------------------------------------------------------------------- /lz/ucl/n2d_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/n2d_d.c -------------------------------------------------------------------------------- /lz/ucl/n2d_ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/n2d_ds.c -------------------------------------------------------------------------------- /lz/ucl/n2d_to.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/n2d_to.c -------------------------------------------------------------------------------- /lz/ucl/n2e_99.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/n2e_99.c -------------------------------------------------------------------------------- /lz/ucl/n2e_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/n2e_d.c -------------------------------------------------------------------------------- /lz/ucl/n2e_ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/n2e_ds.c -------------------------------------------------------------------------------- /lz/ucl/n2e_to.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/n2e_to.c -------------------------------------------------------------------------------- /lz/ucl/ucl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/ucl.h -------------------------------------------------------------------------------- /lz/ucl/ucl_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/ucl_conf.h -------------------------------------------------------------------------------- /lz/ucl/ucl_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/ucl_crc.c -------------------------------------------------------------------------------- /lz/ucl/ucl_dll.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/ucl_dll.ch -------------------------------------------------------------------------------- /lz/ucl/ucl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/ucl_init.c -------------------------------------------------------------------------------- /lz/ucl/ucl_mchw.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/ucl_mchw.ch -------------------------------------------------------------------------------- /lz/ucl/ucl_ptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/ucl_ptr.c -------------------------------------------------------------------------------- /lz/ucl/ucl_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/ucl_ptr.h -------------------------------------------------------------------------------- /lz/ucl/ucl_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/ucl_str.c -------------------------------------------------------------------------------- /lz/ucl/ucl_swd.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/ucl_swd.ch -------------------------------------------------------------------------------- /lz/ucl/ucl_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/ucl_util.c -------------------------------------------------------------------------------- /lz/ucl/uclconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/ucl/uclconf.h -------------------------------------------------------------------------------- /lz/wflz/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/wflz/LICENSE.txt -------------------------------------------------------------------------------- /lz/wflz/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/wflz/README.txt -------------------------------------------------------------------------------- /lz/wflz/wfLZ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/wflz/wfLZ.c -------------------------------------------------------------------------------- /lz/wflz/wfLZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/wflz/wfLZ.h -------------------------------------------------------------------------------- /lz/xz/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/AUTHORS -------------------------------------------------------------------------------- /lz/xz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/CMakeLists.txt -------------------------------------------------------------------------------- /lz/xz/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/COPYING -------------------------------------------------------------------------------- /lz/xz/COPYING.0BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/COPYING.0BSD -------------------------------------------------------------------------------- /lz/xz/COPYING.GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/COPYING.GPLv2 -------------------------------------------------------------------------------- /lz/xz/COPYING.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/COPYING.GPLv3 -------------------------------------------------------------------------------- /lz/xz/COPYING.LGPLv2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/COPYING.LGPLv2.1 -------------------------------------------------------------------------------- /lz/xz/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/ChangeLog -------------------------------------------------------------------------------- /lz/xz/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/INSTALL -------------------------------------------------------------------------------- /lz/xz/INSTALL.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/INSTALL.generic -------------------------------------------------------------------------------- /lz/xz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/Makefile.am -------------------------------------------------------------------------------- /lz/xz/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/NEWS -------------------------------------------------------------------------------- /lz/xz/PACKAGERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/PACKAGERS -------------------------------------------------------------------------------- /lz/xz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/README -------------------------------------------------------------------------------- /lz/xz/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/THANKS -------------------------------------------------------------------------------- /lz/xz/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/TODO -------------------------------------------------------------------------------- /lz/xz/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/autogen.sh -------------------------------------------------------------------------------- /lz/xz/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/configure.ac -------------------------------------------------------------------------------- /lz/xz/debug/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/debug/Makefile.am -------------------------------------------------------------------------------- /lz/xz/debug/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/debug/README -------------------------------------------------------------------------------- /lz/xz/debug/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/debug/crc32.c -------------------------------------------------------------------------------- /lz/xz/debug/full_flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/debug/full_flush.c -------------------------------------------------------------------------------- /lz/xz/debug/hex2bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/debug/hex2bin.c -------------------------------------------------------------------------------- /lz/xz/debug/memusage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/debug/memusage.c -------------------------------------------------------------------------------- /lz/xz/debug/repeat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/debug/repeat.c -------------------------------------------------------------------------------- /lz/xz/debug/sync_flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/debug/sync_flush.c -------------------------------------------------------------------------------- /lz/xz/doc/faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/doc/faq.txt -------------------------------------------------------------------------------- /lz/xz/doc/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/doc/history.txt -------------------------------------------------------------------------------- /lz/xz/dos/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/dos/INSTALL.txt -------------------------------------------------------------------------------- /lz/xz/dos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/dos/Makefile -------------------------------------------------------------------------------- /lz/xz/dos/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/dos/README.txt -------------------------------------------------------------------------------- /lz/xz/dos/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/dos/config.h -------------------------------------------------------------------------------- /lz/xz/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/doxygen/Doxyfile -------------------------------------------------------------------------------- /lz/xz/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/lib/Makefile.am -------------------------------------------------------------------------------- /lz/xz/lib/getopt-cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/lib/getopt-cdefs.h -------------------------------------------------------------------------------- /lz/xz/lib/getopt-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/lib/getopt-core.h -------------------------------------------------------------------------------- /lz/xz/lib/getopt-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/lib/getopt-ext.h -------------------------------------------------------------------------------- /lz/xz/lib/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/lib/getopt.c -------------------------------------------------------------------------------- /lz/xz/lib/getopt.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/lib/getopt.in.h -------------------------------------------------------------------------------- /lz/xz/lib/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/lib/getopt1.c -------------------------------------------------------------------------------- /lz/xz/lib/getopt_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/lib/getopt_int.h -------------------------------------------------------------------------------- /lz/xz/m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /lz/xz/m4/getopt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/m4/getopt.m4 -------------------------------------------------------------------------------- /lz/xz/m4/posix-shell.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/m4/posix-shell.m4 -------------------------------------------------------------------------------- /lz/xz/m4/tuklib_mbstr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/m4/tuklib_mbstr.m4 -------------------------------------------------------------------------------- /lz/xz/m4/visibility.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/m4/visibility.m4 -------------------------------------------------------------------------------- /lz/xz/po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/LINGUAS -------------------------------------------------------------------------------- /lz/xz/po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/Makevars -------------------------------------------------------------------------------- /lz/xz/po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/POTFILES.in -------------------------------------------------------------------------------- /lz/xz/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/ca.po -------------------------------------------------------------------------------- /lz/xz/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/cs.po -------------------------------------------------------------------------------- /lz/xz/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/da.po -------------------------------------------------------------------------------- /lz/xz/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/de.po -------------------------------------------------------------------------------- /lz/xz/po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/eo.po -------------------------------------------------------------------------------- /lz/xz/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/es.po -------------------------------------------------------------------------------- /lz/xz/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/fi.po -------------------------------------------------------------------------------- /lz/xz/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/fr.po -------------------------------------------------------------------------------- /lz/xz/po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/hr.po -------------------------------------------------------------------------------- /lz/xz/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/hu.po -------------------------------------------------------------------------------- /lz/xz/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/it.po -------------------------------------------------------------------------------- /lz/xz/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/ko.po -------------------------------------------------------------------------------- /lz/xz/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/pl.po -------------------------------------------------------------------------------- /lz/xz/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/pt.po -------------------------------------------------------------------------------- /lz/xz/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/pt_BR.po -------------------------------------------------------------------------------- /lz/xz/po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/ro.po -------------------------------------------------------------------------------- /lz/xz/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/sr.po -------------------------------------------------------------------------------- /lz/xz/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/sv.po -------------------------------------------------------------------------------- /lz/xz/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/tr.po -------------------------------------------------------------------------------- /lz/xz/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/uk.po -------------------------------------------------------------------------------- /lz/xz/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/vi.po -------------------------------------------------------------------------------- /lz/xz/po/xz.pot-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/xz.pot-header -------------------------------------------------------------------------------- /lz/xz/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/zh_CN.po -------------------------------------------------------------------------------- /lz/xz/po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po/zh_TW.po -------------------------------------------------------------------------------- /lz/xz/po4a/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po4a/de.po -------------------------------------------------------------------------------- /lz/xz/po4a/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po4a/fr.po -------------------------------------------------------------------------------- /lz/xz/po4a/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po4a/ko.po -------------------------------------------------------------------------------- /lz/xz/po4a/po4a.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po4a/po4a.conf -------------------------------------------------------------------------------- /lz/xz/po4a/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po4a/pt_BR.po -------------------------------------------------------------------------------- /lz/xz/po4a/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po4a/ro.po -------------------------------------------------------------------------------- /lz/xz/po4a/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po4a/uk.po -------------------------------------------------------------------------------- /lz/xz/po4a/update-po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/po4a/update-po -------------------------------------------------------------------------------- /lz/xz/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/Makefile.am -------------------------------------------------------------------------------- /lz/xz/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/config.h -------------------------------------------------------------------------------- /lz/xz/src/xz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/Makefile.am -------------------------------------------------------------------------------- /lz/xz/src/xz/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/args.c -------------------------------------------------------------------------------- /lz/xz/src/xz/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/args.h -------------------------------------------------------------------------------- /lz/xz/src/xz/coder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/coder.c -------------------------------------------------------------------------------- /lz/xz/src/xz/coder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/coder.h -------------------------------------------------------------------------------- /lz/xz/src/xz/file_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/file_io.c -------------------------------------------------------------------------------- /lz/xz/src/xz/file_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/file_io.h -------------------------------------------------------------------------------- /lz/xz/src/xz/hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/hardware.c -------------------------------------------------------------------------------- /lz/xz/src/xz/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/hardware.h -------------------------------------------------------------------------------- /lz/xz/src/xz/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/list.c -------------------------------------------------------------------------------- /lz/xz/src/xz/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/list.h -------------------------------------------------------------------------------- /lz/xz/src/xz/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/main.c -------------------------------------------------------------------------------- /lz/xz/src/xz/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/main.h -------------------------------------------------------------------------------- /lz/xz/src/xz/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/message.c -------------------------------------------------------------------------------- /lz/xz/src/xz/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/message.h -------------------------------------------------------------------------------- /lz/xz/src/xz/mytime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/mytime.c -------------------------------------------------------------------------------- /lz/xz/src/xz/mytime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/mytime.h -------------------------------------------------------------------------------- /lz/xz/src/xz/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/options.c -------------------------------------------------------------------------------- /lz/xz/src/xz/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/options.h -------------------------------------------------------------------------------- /lz/xz/src/xz/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/private.h -------------------------------------------------------------------------------- /lz/xz/src/xz/sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/sandbox.c -------------------------------------------------------------------------------- /lz/xz/src/xz/sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/sandbox.h -------------------------------------------------------------------------------- /lz/xz/src/xz/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/signals.c -------------------------------------------------------------------------------- /lz/xz/src/xz/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/signals.h -------------------------------------------------------------------------------- /lz/xz/src/xz/suffix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/suffix.c -------------------------------------------------------------------------------- /lz/xz/src/xz/suffix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/suffix.h -------------------------------------------------------------------------------- /lz/xz/src/xz/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/util.c -------------------------------------------------------------------------------- /lz/xz/src/xz/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/util.h -------------------------------------------------------------------------------- /lz/xz/src/xz/xz.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xz/xz.1 -------------------------------------------------------------------------------- /lz/xz/src/xzdec/xzdec.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xzdec/xzdec.1 -------------------------------------------------------------------------------- /lz/xz/src/xzdec/xzdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/src/xzdec/xzdec.c -------------------------------------------------------------------------------- /lz/xz/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/tests/Makefile.am -------------------------------------------------------------------------------- /lz/xz/tests/files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/tests/files/README -------------------------------------------------------------------------------- /lz/xz/tests/test_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/tests/test_check.c -------------------------------------------------------------------------------- /lz/xz/tests/test_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/tests/test_index.c -------------------------------------------------------------------------------- /lz/xz/tests/test_vli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/tests/test_vli.c -------------------------------------------------------------------------------- /lz/xz/tests/tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/tests/tests.cmake -------------------------------------------------------------------------------- /lz/xz/tests/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/tests/tests.h -------------------------------------------------------------------------------- /lz/xz/tests/tuktest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/tests/tuktest.h -------------------------------------------------------------------------------- /lz/xz/windows/build.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/xz/windows/build.bash -------------------------------------------------------------------------------- /lz/yalz77/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/yalz77/README.md -------------------------------------------------------------------------------- /lz/yalz77/lz77.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/yalz77/lz77.h -------------------------------------------------------------------------------- /lz/yappy/LICENSE-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/yappy/LICENSE-2.0 -------------------------------------------------------------------------------- /lz/yappy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/yappy/README -------------------------------------------------------------------------------- /lz/yappy/yappy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/yappy/yappy.cpp -------------------------------------------------------------------------------- /lz/yappy/yappy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/yappy/yappy.hpp -------------------------------------------------------------------------------- /lz/zlib-ng/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/LICENSE.md -------------------------------------------------------------------------------- /lz/zlib-ng/PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/PORTING.md -------------------------------------------------------------------------------- /lz/zlib-ng/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/README.md -------------------------------------------------------------------------------- /lz/zlib-ng/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/adler32.c -------------------------------------------------------------------------------- /lz/zlib-ng/adler32_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/adler32_p.h -------------------------------------------------------------------------------- /lz/zlib-ng/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/compress.c -------------------------------------------------------------------------------- /lz/zlib-ng/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/crc32.c -------------------------------------------------------------------------------- /lz/zlib-ng/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/crc32.h -------------------------------------------------------------------------------- /lz/zlib-ng/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/deflate.c -------------------------------------------------------------------------------- /lz/zlib-ng/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/deflate.h -------------------------------------------------------------------------------- /lz/zlib-ng/deflate_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/deflate_p.h -------------------------------------------------------------------------------- /lz/zlib-ng/deflate_rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/deflate_rle.c -------------------------------------------------------------------------------- /lz/zlib-ng/functable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/functable.c -------------------------------------------------------------------------------- /lz/zlib-ng/functable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/functable.h -------------------------------------------------------------------------------- /lz/zlib-ng/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/gzguts.h -------------------------------------------------------------------------------- /lz/zlib-ng/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/gzlib.c -------------------------------------------------------------------------------- /lz/zlib-ng/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/gzwrite.c -------------------------------------------------------------------------------- /lz/zlib-ng/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/infback.c -------------------------------------------------------------------------------- /lz/zlib-ng/inffast_tpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/inffast_tpl.h -------------------------------------------------------------------------------- /lz/zlib-ng/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/inflate.c -------------------------------------------------------------------------------- /lz/zlib-ng/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/inflate.h -------------------------------------------------------------------------------- /lz/zlib-ng/inflate_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/inflate_p.h -------------------------------------------------------------------------------- /lz/zlib-ng/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/inftrees.c -------------------------------------------------------------------------------- /lz/zlib-ng/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/inftrees.h -------------------------------------------------------------------------------- /lz/zlib-ng/match_tpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/match_tpl.h -------------------------------------------------------------------------------- /lz/zlib-ng/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/trees.c -------------------------------------------------------------------------------- /lz/zlib-ng/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/trees.h -------------------------------------------------------------------------------- /lz/zlib-ng/trees_emit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/trees_emit.h -------------------------------------------------------------------------------- /lz/zlib-ng/trees_tbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/trees_tbl.h -------------------------------------------------------------------------------- /lz/zlib-ng/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/uncompr.c -------------------------------------------------------------------------------- /lz/zlib-ng/zbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/zbuild.h -------------------------------------------------------------------------------- /lz/zlib-ng/zconf-ng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/zconf-ng.h -------------------------------------------------------------------------------- /lz/zlib-ng/zendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/zendian.h -------------------------------------------------------------------------------- /lz/zlib-ng/zlib-ng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/zlib-ng.h -------------------------------------------------------------------------------- /lz/zlib-ng/zmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/zmemory.h -------------------------------------------------------------------------------- /lz/zlib-ng/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/zutil.c -------------------------------------------------------------------------------- /lz/zlib-ng/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/zutil.h -------------------------------------------------------------------------------- /lz/zlib-ng/zutil_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib-ng/zutil_p.h -------------------------------------------------------------------------------- /lz/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /lz/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/ChangeLog -------------------------------------------------------------------------------- /lz/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/FAQ -------------------------------------------------------------------------------- /lz/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/INDEX -------------------------------------------------------------------------------- /lz/zlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/LICENSE -------------------------------------------------------------------------------- /lz/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/Makefile -------------------------------------------------------------------------------- /lz/zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/Makefile.in -------------------------------------------------------------------------------- /lz/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/README -------------------------------------------------------------------------------- /lz/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/adler32.c -------------------------------------------------------------------------------- /lz/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/compress.c -------------------------------------------------------------------------------- /lz/zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/configure -------------------------------------------------------------------------------- /lz/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/crc32.c -------------------------------------------------------------------------------- /lz/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/crc32.h -------------------------------------------------------------------------------- /lz/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/deflate.c -------------------------------------------------------------------------------- /lz/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/deflate.h -------------------------------------------------------------------------------- /lz/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/gzclose.c -------------------------------------------------------------------------------- /lz/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/gzguts.h -------------------------------------------------------------------------------- /lz/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/gzlib.c -------------------------------------------------------------------------------- /lz/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/gzread.c -------------------------------------------------------------------------------- /lz/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/gzwrite.c -------------------------------------------------------------------------------- /lz/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/infback.c -------------------------------------------------------------------------------- /lz/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/inffast.c -------------------------------------------------------------------------------- /lz/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/inffast.h -------------------------------------------------------------------------------- /lz/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/inffixed.h -------------------------------------------------------------------------------- /lz/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/inflate.c -------------------------------------------------------------------------------- /lz/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/inflate.h -------------------------------------------------------------------------------- /lz/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/inftrees.c -------------------------------------------------------------------------------- /lz/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/inftrees.h -------------------------------------------------------------------------------- /lz/zlib/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/make_vms.com -------------------------------------------------------------------------------- /lz/zlib/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/treebuild.xml -------------------------------------------------------------------------------- /lz/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/trees.c -------------------------------------------------------------------------------- /lz/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/trees.h -------------------------------------------------------------------------------- /lz/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/uncompr.c -------------------------------------------------------------------------------- /lz/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/zconf.h -------------------------------------------------------------------------------- /lz/zlib/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/zconf.h.cmakein -------------------------------------------------------------------------------- /lz/zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/zconf.h.in -------------------------------------------------------------------------------- /lz/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/zlib.3 -------------------------------------------------------------------------------- /lz/zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /lz/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/zlib.h -------------------------------------------------------------------------------- /lz/zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/zlib.map -------------------------------------------------------------------------------- /lz/zlib/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/zlib.pc.cmakein -------------------------------------------------------------------------------- /lz/zlib/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/zlib.pc.in -------------------------------------------------------------------------------- /lz/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/zutil.c -------------------------------------------------------------------------------- /lz/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zlib/zutil.h -------------------------------------------------------------------------------- /lz/zstd/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/.buckconfig -------------------------------------------------------------------------------- /lz/zstd/.buckversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/.buckversion -------------------------------------------------------------------------------- /lz/zstd/.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/.cirrus.yml -------------------------------------------------------------------------------- /lz/zstd/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/.gitattributes -------------------------------------------------------------------------------- /lz/zstd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/.gitignore -------------------------------------------------------------------------------- /lz/zstd/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/CHANGELOG -------------------------------------------------------------------------------- /lz/zstd/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/CONTRIBUTING.md -------------------------------------------------------------------------------- /lz/zstd/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/COPYING -------------------------------------------------------------------------------- /lz/zstd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/LICENSE -------------------------------------------------------------------------------- /lz/zstd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/Makefile -------------------------------------------------------------------------------- /lz/zstd/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/Package.swift -------------------------------------------------------------------------------- /lz/zstd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/README.md -------------------------------------------------------------------------------- /lz/zstd/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/SECURITY.md -------------------------------------------------------------------------------- /lz/zstd/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/TESTING.md -------------------------------------------------------------------------------- /lz/zstd/build/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/build/.gitignore -------------------------------------------------------------------------------- /lz/zstd/build/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lz/zstd/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/build/README.md -------------------------------------------------------------------------------- /lz/zstd/build/cmake/lib/.gitignore: -------------------------------------------------------------------------------- 1 | # cmake build artefact 2 | libzstd.pc 3 | -------------------------------------------------------------------------------- /lz/zstd/contrib/diagnose_corruption/.gitignore: -------------------------------------------------------------------------------- 1 | check_flipped_bits 2 | -------------------------------------------------------------------------------- /lz/zstd/contrib/pzstd/.gitignore: -------------------------------------------------------------------------------- 1 | # compilation result 2 | pzstd 3 | -------------------------------------------------------------------------------- /lz/zstd/contrib/seekable_format/tests/.gitignore: -------------------------------------------------------------------------------- 1 | seekable_tests 2 | -------------------------------------------------------------------------------- /lz/zstd/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/doc/README.md -------------------------------------------------------------------------------- /lz/zstd/doc/educational_decoder/.gitignore: -------------------------------------------------------------------------------- 1 | # Build artifacts 2 | harness 3 | -------------------------------------------------------------------------------- /lz/zstd/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/lib/.gitignore -------------------------------------------------------------------------------- /lz/zstd/lib/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/lib/BUCK -------------------------------------------------------------------------------- /lz/zstd/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/lib/Makefile -------------------------------------------------------------------------------- /lz/zstd/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/lib/README.md -------------------------------------------------------------------------------- /lz/zstd/lib/common/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/lib/common/cpu.h -------------------------------------------------------------------------------- /lz/zstd/lib/common/fse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/lib/common/fse.h -------------------------------------------------------------------------------- /lz/zstd/lib/common/huf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/lib/common/huf.h -------------------------------------------------------------------------------- /lz/zstd/lib/common/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/lib/common/mem.h -------------------------------------------------------------------------------- /lz/zstd/lib/libzstd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/lib/libzstd.mk -------------------------------------------------------------------------------- /lz/zstd/lib/zdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/lib/zdict.h -------------------------------------------------------------------------------- /lz/zstd/lib/zstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/lib/zstd.h -------------------------------------------------------------------------------- /lz/zstd/programs/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/programs/BUCK -------------------------------------------------------------------------------- /lz/zstd/programs/dibio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/programs/dibio.c -------------------------------------------------------------------------------- /lz/zstd/programs/dibio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/programs/dibio.h -------------------------------------------------------------------------------- /lz/zstd/programs/lorem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/programs/lorem.c -------------------------------------------------------------------------------- /lz/zstd/programs/lorem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/programs/lorem.h -------------------------------------------------------------------------------- /lz/zstd/programs/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/programs/util.c -------------------------------------------------------------------------------- /lz/zstd/programs/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/programs/util.h -------------------------------------------------------------------------------- /lz/zstd/programs/zstd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/programs/zstd.1 -------------------------------------------------------------------------------- /lz/zstd/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/tests/.gitignore -------------------------------------------------------------------------------- /lz/zstd/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/tests/Makefile -------------------------------------------------------------------------------- /lz/zstd/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/tests/README.md -------------------------------------------------------------------------------- /lz/zstd/tests/bigdict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/tests/bigdict.c -------------------------------------------------------------------------------- /lz/zstd/tests/checkTag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/tests/checkTag.c -------------------------------------------------------------------------------- /lz/zstd/tests/cli-tests/basic/args.sh.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lz/zstd/tests/cli-tests/bin/datagen: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$DATAGEN_BIN" $@ 4 | -------------------------------------------------------------------------------- /lz/zstd/tests/cli-tests/bin/die: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | println "${*}" 1>&2 4 | exit 1 5 | -------------------------------------------------------------------------------- /lz/zstd/tests/cli-tests/bin/println: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | printf '%b\n' "${*}" 3 | -------------------------------------------------------------------------------- /lz/zstd/tests/cli-tests/bin/unzstd: -------------------------------------------------------------------------------- 1 | zstd -------------------------------------------------------------------------------- /lz/zstd/tests/cli-tests/bin/zstdcat: -------------------------------------------------------------------------------- 1 | zstd -------------------------------------------------------------------------------- /lz/zstd/tests/cli-tests/bin/zstdgrep: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "$ZSTDGREP_BIN" $@ 3 | -------------------------------------------------------------------------------- /lz/zstd/tests/cli-tests/bin/zstdless: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "$ZSTDLESS_BIN" $@ 3 | -------------------------------------------------------------------------------- /lz/zstd/tests/cli-tests/cltools/zstdgrep.sh.exit: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /lz/zstd/tests/cli-tests/compression/window-resize.sh.stderr.ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lz/zstd/tests/cli-tests/dict-builder/empty-input.sh.stderr.exact: -------------------------------------------------------------------------------- 1 | zstd -q --train empty file* 2 | -------------------------------------------------------------------------------- /lz/zstd/tests/cli-tests/dict-builder/no-inputs.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -v 3 | zstd --train 4 | -------------------------------------------------------------------------------- /lz/zstd/tests/cli-tests/dict-builder/no-inputs.sh.exit: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /lz/zstd/tests/cli-tests/file-handling/directory-mirror.sh.stderr.exact: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lz/zstd/tests/cli-tests/file-handling/directory-mirror.sh.stdout.exact: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lz/zstd/tests/fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/tests/fuzzer.c -------------------------------------------------------------------------------- /lz/zstd/tests/golden-decompression-errors/.gitignore: -------------------------------------------------------------------------------- 1 | !*.zst 2 | -------------------------------------------------------------------------------- /lz/zstd/tests/legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/tests/legacy.c -------------------------------------------------------------------------------- /lz/zstd/tests/loremOut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/tests/loremOut.c -------------------------------------------------------------------------------- /lz/zstd/tests/loremOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/tests/loremOut.h -------------------------------------------------------------------------------- /lz/zstd/tests/seqgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/tests/seqgen.c -------------------------------------------------------------------------------- /lz/zstd/tests/seqgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/lz/zstd/tests/seqgen.h -------------------------------------------------------------------------------- /misc/7-zip/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/7z.h -------------------------------------------------------------------------------- /misc/7-zip/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/7zAlloc.c -------------------------------------------------------------------------------- /misc/7-zip/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/7zAlloc.h -------------------------------------------------------------------------------- /misc/7-zip/7zArcIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/7zArcIn.c -------------------------------------------------------------------------------- /misc/7-zip/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/7zBuf.c -------------------------------------------------------------------------------- /misc/7-zip/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/7zBuf.h -------------------------------------------------------------------------------- /misc/7-zip/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/7zBuf2.c -------------------------------------------------------------------------------- /misc/7-zip/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/7zCrc.c -------------------------------------------------------------------------------- /misc/7-zip/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/7zCrc.h -------------------------------------------------------------------------------- /misc/7-zip/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/7zCrcOpt.c -------------------------------------------------------------------------------- /misc/7-zip/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/7zDec.c -------------------------------------------------------------------------------- /misc/7-zip/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/7zFile.c -------------------------------------------------------------------------------- /misc/7-zip/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/7zFile.h -------------------------------------------------------------------------------- /misc/7-zip/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/7zStream.c -------------------------------------------------------------------------------- /misc/7-zip/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/7zTypes.h -------------------------------------------------------------------------------- /misc/7-zip/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Aes.c -------------------------------------------------------------------------------- /misc/7-zip/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Aes.h -------------------------------------------------------------------------------- /misc/7-zip/AesOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/AesOpt.c -------------------------------------------------------------------------------- /misc/7-zip/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Alloc.c -------------------------------------------------------------------------------- /misc/7-zip/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Alloc.h -------------------------------------------------------------------------------- /misc/7-zip/Asm_c.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Asm_c.mak -------------------------------------------------------------------------------- /misc/7-zip/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Bcj2.c -------------------------------------------------------------------------------- /misc/7-zip/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Bcj2.h -------------------------------------------------------------------------------- /misc/7-zip/Bcj2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Bcj2Enc.c -------------------------------------------------------------------------------- /misc/7-zip/Blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Blake2.h -------------------------------------------------------------------------------- /misc/7-zip/Blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Blake2s.c -------------------------------------------------------------------------------- /misc/7-zip/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Bra.c -------------------------------------------------------------------------------- /misc/7-zip/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Bra.h -------------------------------------------------------------------------------- /misc/7-zip/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Bra86.c -------------------------------------------------------------------------------- /misc/7-zip/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/BraIA64.c -------------------------------------------------------------------------------- /misc/7-zip/BwtSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/BwtSort.c -------------------------------------------------------------------------------- /misc/7-zip/BwtSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/BwtSort.h -------------------------------------------------------------------------------- /misc/7-zip/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Compiler.h -------------------------------------------------------------------------------- /misc/7-zip/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/CpuArch.c -------------------------------------------------------------------------------- /misc/7-zip/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/CpuArch.h -------------------------------------------------------------------------------- /misc/7-zip/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Delta.c -------------------------------------------------------------------------------- /misc/7-zip/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Delta.h -------------------------------------------------------------------------------- /misc/7-zip/DllSecur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/DllSecur.c -------------------------------------------------------------------------------- /misc/7-zip/DllSecur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/DllSecur.h -------------------------------------------------------------------------------- /misc/7-zip/HuffEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/HuffEnc.c -------------------------------------------------------------------------------- /misc/7-zip/HuffEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/HuffEnc.h -------------------------------------------------------------------------------- /misc/7-zip/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/LzFind.c -------------------------------------------------------------------------------- /misc/7-zip/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/LzFind.h -------------------------------------------------------------------------------- /misc/7-zip/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/LzFindMt.c -------------------------------------------------------------------------------- /misc/7-zip/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/LzFindMt.h -------------------------------------------------------------------------------- /misc/7-zip/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/LzHash.h -------------------------------------------------------------------------------- /misc/7-zip/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Lzma2Dec.c -------------------------------------------------------------------------------- /misc/7-zip/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Lzma2Dec.h -------------------------------------------------------------------------------- /misc/7-zip/Lzma2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Lzma2Enc.c -------------------------------------------------------------------------------- /misc/7-zip/Lzma2Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Lzma2Enc.h -------------------------------------------------------------------------------- /misc/7-zip/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Lzma86.h -------------------------------------------------------------------------------- /misc/7-zip/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/LzmaDec.c -------------------------------------------------------------------------------- /misc/7-zip/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/LzmaDec.h -------------------------------------------------------------------------------- /misc/7-zip/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/LzmaEnc.c -------------------------------------------------------------------------------- /misc/7-zip/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/LzmaEnc.h -------------------------------------------------------------------------------- /misc/7-zip/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/LzmaLib.c -------------------------------------------------------------------------------- /misc/7-zip/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/LzmaLib.h -------------------------------------------------------------------------------- /misc/7-zip/Md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Md5.c -------------------------------------------------------------------------------- /misc/7-zip/Md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Md5.h -------------------------------------------------------------------------------- /misc/7-zip/MtCoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/MtCoder.c -------------------------------------------------------------------------------- /misc/7-zip/MtCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/MtCoder.h -------------------------------------------------------------------------------- /misc/7-zip/MtDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/MtDec.c -------------------------------------------------------------------------------- /misc/7-zip/MtDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/MtDec.h -------------------------------------------------------------------------------- /misc/7-zip/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Ppmd.h -------------------------------------------------------------------------------- /misc/7-zip/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Ppmd7.c -------------------------------------------------------------------------------- /misc/7-zip/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Ppmd7.h -------------------------------------------------------------------------------- /misc/7-zip/Ppmd7Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Ppmd7Dec.c -------------------------------------------------------------------------------- /misc/7-zip/Ppmd7Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Ppmd7Enc.c -------------------------------------------------------------------------------- /misc/7-zip/Ppmd8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Ppmd8.c -------------------------------------------------------------------------------- /misc/7-zip/Ppmd8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Ppmd8.h -------------------------------------------------------------------------------- /misc/7-zip/Ppmd8Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Ppmd8Dec.c -------------------------------------------------------------------------------- /misc/7-zip/Ppmd8Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Ppmd8Enc.c -------------------------------------------------------------------------------- /misc/7-zip/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Precomp.h -------------------------------------------------------------------------------- /misc/7-zip/Sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Sha1.c -------------------------------------------------------------------------------- /misc/7-zip/Sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Sha1.h -------------------------------------------------------------------------------- /misc/7-zip/Sha1Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Sha1Opt.c -------------------------------------------------------------------------------- /misc/7-zip/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Sha256.c -------------------------------------------------------------------------------- /misc/7-zip/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Sha256.h -------------------------------------------------------------------------------- /misc/7-zip/Sha3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Sha3.c -------------------------------------------------------------------------------- /misc/7-zip/Sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Sha3.h -------------------------------------------------------------------------------- /misc/7-zip/Sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Sha512.c -------------------------------------------------------------------------------- /misc/7-zip/Sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Sha512.h -------------------------------------------------------------------------------- /misc/7-zip/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Sort.c -------------------------------------------------------------------------------- /misc/7-zip/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Sort.h -------------------------------------------------------------------------------- /misc/7-zip/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Threads.c -------------------------------------------------------------------------------- /misc/7-zip/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Threads.h -------------------------------------------------------------------------------- /misc/7-zip/Xxh64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Xxh64.c -------------------------------------------------------------------------------- /misc/7-zip/Xxh64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Xxh64.h -------------------------------------------------------------------------------- /misc/7-zip/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Xz.c -------------------------------------------------------------------------------- /misc/7-zip/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/Xz.h -------------------------------------------------------------------------------- /misc/7-zip/XzCrc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/XzCrc64.c -------------------------------------------------------------------------------- /misc/7-zip/XzCrc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/XzCrc64.h -------------------------------------------------------------------------------- /misc/7-zip/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/XzDec.c -------------------------------------------------------------------------------- /misc/7-zip/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/XzEnc.c -------------------------------------------------------------------------------- /misc/7-zip/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/XzEnc.h -------------------------------------------------------------------------------- /misc/7-zip/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/XzIn.c -------------------------------------------------------------------------------- /misc/7-zip/ZstdDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/ZstdDec.c -------------------------------------------------------------------------------- /misc/7-zip/ZstdDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/7-zip/ZstdDec.h -------------------------------------------------------------------------------- /misc/7-zip/warn_clang.mak: -------------------------------------------------------------------------------- 1 | CFLAGS_WARN = -Weverything -Wfatal-errors 2 | -------------------------------------------------------------------------------- /misc/density/src/src/algorithms/chameleon.rs: -------------------------------------------------------------------------------- 1 | pub mod chameleon; -------------------------------------------------------------------------------- /misc/density/src/src/algorithms/cheetah.rs: -------------------------------------------------------------------------------- 1 | pub mod cheetah; -------------------------------------------------------------------------------- /misc/density/src/src/algorithms/lion.rs: -------------------------------------------------------------------------------- 1 | pub mod lion; 2 | -------------------------------------------------------------------------------- /misc/glza/GLZA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/glza/GLZA.c -------------------------------------------------------------------------------- /misc/glza/GLZA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/glza/GLZA.h -------------------------------------------------------------------------------- /misc/glza/GLZAcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/glza/GLZAcomp.c -------------------------------------------------------------------------------- /misc/glza/GLZAcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/glza/GLZAcomp.h -------------------------------------------------------------------------------- /misc/glza/GLZAmodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/glza/GLZAmodel.c -------------------------------------------------------------------------------- /misc/glza/GLZAmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/glza/GLZAmodel.h -------------------------------------------------------------------------------- /misc/glza/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/glza/Makefile -------------------------------------------------------------------------------- /misc/glza/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/glza/readme.txt -------------------------------------------------------------------------------- /misc/kanzi-cpp/src/configure: -------------------------------------------------------------------------------- 1 | # Fake config file 2 | -------------------------------------------------------------------------------- /misc/nvcomp/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/nvcomp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/nvcomp/LICENSE -------------------------------------------------------------------------------- /misc/nvcomp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/nvcomp/README.md -------------------------------------------------------------------------------- /misc/zpaq/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/zpaq/.gitignore -------------------------------------------------------------------------------- /misc/zpaq/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/zpaq/COPYING -------------------------------------------------------------------------------- /misc/zpaq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/zpaq/Makefile -------------------------------------------------------------------------------- /misc/zpaq/libzpaq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/zpaq/libzpaq.cpp -------------------------------------------------------------------------------- /misc/zpaq/libzpaq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/zpaq/libzpaq.h -------------------------------------------------------------------------------- /misc/zpaq/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/zpaq/readme.txt -------------------------------------------------------------------------------- /misc/zpaq/zpaq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/zpaq/zpaq.cpp -------------------------------------------------------------------------------- /misc/zpaq/zpaq.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inikep/lzbench/HEAD/misc/zpaq/zpaq.pod --------------------------------------------------------------------------------