├── .gitignore ├── COPYING ├── Makefile ├── Makefile.msc ├── README.md ├── common ├── common_defs.h ├── compiler_gcc.h └── compiler_msc.h ├── lib ├── decompress_impl.h ├── hc_matchfinder.h ├── lz_extend.h ├── lz_hash.h ├── unaligned.h ├── x86_cpu_features.c ├── x86_cpu_features.h ├── xpack_common.c ├── xpack_common.h ├── xpack_compress.c ├── xpack_constants.h └── xpack_decompress.c ├── libxpack.h ├── programs ├── benchmark.c ├── detect.sh ├── prog_util.c ├── prog_util.h ├── tgetopt.c └── xpack.c └── tools ├── afl-fuzz ├── Makefile ├── compress │ ├── fuzz.c │ └── inputs │ │ └── 0 ├── decompress │ └── inputs │ │ └── 0 └── prepare_for_fuzz.sh ├── arm_test.sh ├── make-windows-releases ├── mips_test.sh ├── msc_test.bat └── windows_test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/Makefile.msc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/README.md -------------------------------------------------------------------------------- /common/common_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/common/common_defs.h -------------------------------------------------------------------------------- /common/compiler_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/common/compiler_gcc.h -------------------------------------------------------------------------------- /common/compiler_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/common/compiler_msc.h -------------------------------------------------------------------------------- /lib/decompress_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/lib/decompress_impl.h -------------------------------------------------------------------------------- /lib/hc_matchfinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/lib/hc_matchfinder.h -------------------------------------------------------------------------------- /lib/lz_extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/lib/lz_extend.h -------------------------------------------------------------------------------- /lib/lz_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/lib/lz_hash.h -------------------------------------------------------------------------------- /lib/unaligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/lib/unaligned.h -------------------------------------------------------------------------------- /lib/x86_cpu_features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/lib/x86_cpu_features.c -------------------------------------------------------------------------------- /lib/x86_cpu_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/lib/x86_cpu_features.h -------------------------------------------------------------------------------- /lib/xpack_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/lib/xpack_common.c -------------------------------------------------------------------------------- /lib/xpack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/lib/xpack_common.h -------------------------------------------------------------------------------- /lib/xpack_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/lib/xpack_compress.c -------------------------------------------------------------------------------- /lib/xpack_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/lib/xpack_constants.h -------------------------------------------------------------------------------- /lib/xpack_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/lib/xpack_decompress.c -------------------------------------------------------------------------------- /libxpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/libxpack.h -------------------------------------------------------------------------------- /programs/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/programs/benchmark.c -------------------------------------------------------------------------------- /programs/detect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/programs/detect.sh -------------------------------------------------------------------------------- /programs/prog_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/programs/prog_util.c -------------------------------------------------------------------------------- /programs/prog_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/programs/prog_util.h -------------------------------------------------------------------------------- /programs/tgetopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/programs/tgetopt.c -------------------------------------------------------------------------------- /programs/xpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/programs/xpack.c -------------------------------------------------------------------------------- /tools/afl-fuzz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/tools/afl-fuzz/Makefile -------------------------------------------------------------------------------- /tools/afl-fuzz/compress/fuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/tools/afl-fuzz/compress/fuzz.c -------------------------------------------------------------------------------- /tools/afl-fuzz/compress/inputs/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/tools/afl-fuzz/compress/inputs/0 -------------------------------------------------------------------------------- /tools/afl-fuzz/decompress/inputs/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/tools/afl-fuzz/decompress/inputs/0 -------------------------------------------------------------------------------- /tools/afl-fuzz/prepare_for_fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/tools/afl-fuzz/prepare_for_fuzz.sh -------------------------------------------------------------------------------- /tools/arm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/tools/arm_test.sh -------------------------------------------------------------------------------- /tools/make-windows-releases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/tools/make-windows-releases -------------------------------------------------------------------------------- /tools/mips_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/tools/mips_test.sh -------------------------------------------------------------------------------- /tools/msc_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/tools/msc_test.bat -------------------------------------------------------------------------------- /tools/windows_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebiggers/xpack/HEAD/tools/windows_test.sh --------------------------------------------------------------------------------