gitextract_v1q1r9ds/ ├── .gitattributes ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ ├── cmake-cross-compile-test.yml │ └── scorecard.yml ├── .gitignore ├── CHANGELOG ├── Doxyfile ├── Doxyfile-internal ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── appveyor.yml ├── build/ │ └── make/ │ ├── README.md │ └── multiconf.make ├── cli/ │ ├── .tipi/ │ │ ├── deps │ │ └── opts │ ├── COPYING │ ├── README.md │ ├── xsum_arch.c │ ├── xsum_arch.h │ ├── xsum_bench.c │ ├── xsum_bench.h │ ├── xsum_config.h │ ├── xsum_os_specific.c │ ├── xsum_os_specific.h │ ├── xsum_output.c │ ├── xsum_output.h │ ├── xsum_sanity_check.c │ ├── xsum_sanity_check.h │ ├── xxhsum.1 │ ├── xxhsum.1.md │ └── xxhsum.c ├── clib.json ├── doc/ │ ├── README.md │ ├── xxhash.cry │ └── xxhash_spec.md ├── fuzz/ │ └── fuzzer.c ├── libxxhash.pc.in ├── tests/ │ ├── Makefile │ ├── cli-comment-line.sh │ ├── cli-ignore-missing.sh │ ├── collisions/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── allcodecs/ │ │ │ ├── README.md │ │ │ ├── dummy.c │ │ │ └── dummy.h │ │ ├── hashes.h │ │ ├── main.c │ │ ├── pool.c │ │ ├── pool.h │ │ ├── sort.cc │ │ ├── sort.hh │ │ ├── threading.c │ │ └── threading.h │ ├── filename-escape.sh │ ├── generate_unicode_test.c │ ├── multiInclude.c │ ├── ppc_define.c │ ├── sanity_test.c │ ├── sanity_test_vectors.h │ ├── sanity_test_vectors_generator.c │ ├── test_alias.c │ └── unicode_lint.sh ├── xxh3.h ├── xxh_x86dispatch.c ├── xxh_x86dispatch.h ├── xxhash.c └── xxhash.h