GCC Code Coverage Report


Directory: ./
File: src/dependencies/xx_hash.cpp
Date: 2023-04-27 00:55:30
Exec Total Coverage
Lines: 1 1 100.0%
Functions: 1 1 100.0%
Branches: 0 0 -%

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