| 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)) ; } |
| 10530 | static size_t ZSTD_hash6Ptr(const void* p, U32 h) { return ZSTD_hash6(MEM_readLE64(p), h); } |
| 10531 | |
| 10532 | static const U64 prime7bytes = 58295818150454627ULL; |
| 10533 | static size_t ZSTD_hash7(U64 u, U32 h) { return (size_t)(((u << (64-56)) * prime7bytes) >> (64-h)) ; } |
no test coverage detected