| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #include "xx_hash.h" | ||
| 2 | #include "compatibility/compatibility.h" | ||
| 3 | |||
| 4 | // only from Zen 4 | ||
| 5 | // #define XXH_VECTOR XXH_AVX512 | ||
| 6 | |||
| 7 | #include "xxHash/xxh3.h" | ||
| 8 | #include "xxHash/xxhash.c" | ||
| 9 | #include "xxHash/xxhash.h" | ||
| 10 | |||
| 11 | namespace lython { | ||
| 12 | |||
| 13 | std::size_t xx_hash_3(void const* buffer, std::size_t size) noexcept { | ||
| 14 | 54849 | return XXH3_64bits(buffer, size); | |
| 15 | } | ||
| 16 | |||
| 17 | } // namespace lython | ||
| 18 |