| 10524 | static const U64 prime5bytes = 889523592379ULL; |
| 10525 | static size_t ZSTD_hash5(U64 u, U32 h) { return (size_t)(((u << (64-40)) * prime5bytes) >> (64-h)) ; } |
| 10526 | static size_t ZSTD_hash5Ptr(const void* p, U32 h) { return ZSTD_hash5(MEM_readLE64(p), h); } |
| 10527 | |
| 10528 | static const U64 prime6bytes = 227718039650203ULL; |
| 10529 | static size_t ZSTD_hash6(U64 u, U32 h) { return (size_t)(((u << (64-48)) * prime6bytes) >> (64-h)) ; } |
no test coverage detected