├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── appveyor.yml ├── cmake_unofficial ├── .gitignore ├── CMakeLists.txt └── README.md ├── doc └── xxhash_spec.md ├── xxh3.h ├── xxhash.c └── xxhash.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/xxHash/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/xxHash/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/xxHash/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/xxHash/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/xxHash/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/xxHash/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/xxHash/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmake_unofficial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/xxHash/HEAD/cmake_unofficial/.gitignore -------------------------------------------------------------------------------- /cmake_unofficial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/xxHash/HEAD/cmake_unofficial/CMakeLists.txt -------------------------------------------------------------------------------- /cmake_unofficial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/xxHash/HEAD/cmake_unofficial/README.md -------------------------------------------------------------------------------- /doc/xxhash_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/xxHash/HEAD/doc/xxhash_spec.md -------------------------------------------------------------------------------- /xxh3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/xxHash/HEAD/xxh3.h -------------------------------------------------------------------------------- /xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/xxHash/HEAD/xxhash.c -------------------------------------------------------------------------------- /xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/xxHash/HEAD/xxhash.h --------------------------------------------------------------------------------