| 42 | namespace das { |
| 43 | |
| 44 | static __forceinline uint64_t hash_block64 ( const uint8_t * block, size_t size ) { |
| 45 | auto h = wyhash(block, size, DAS_WYHASH_SEED); |
| 46 | return h <= HASH_KILLED64 ? UINT64_C(1099511628211) : h; |
| 47 | } |
| 48 | |
| 49 | DAS_SUPPRESS_UB |
| 50 | static NO_ASAN_INLINE uint64_t hash_blockz64 ( const uint8_t * block ) { |
no test coverage detected