| 81 | } |
| 82 | |
| 83 | static __forceinline uint64_t hash_uint64 ( uint64_t value ) { // this is simplified, and not the same as wyhash(&value,4) |
| 84 | auto h = _wymix(value, DAS_WYHASH_SEED); |
| 85 | return h <= HASH_KILLED64 ? UINT64_C(1099511628211) : h; |
| 86 | } |
| 87 | |
| 88 | class HashBuilder { |
| 89 | uint64_t seed = DAS_WYHASH_SEED; |
no test coverage detected