| 824 | } |
| 825 | |
| 826 | inline uint64_t fmix64 (uint64_t k) { |
| 827 | k ^= k >> 33; |
| 828 | k *= 0xff51afd7ed558ccdULL; |
| 829 | k ^= k >> 33; |
| 830 | k *= 0xc4ceb9fe1a85ec53ULL; |
| 831 | k ^= k >> 33; |
| 832 | |
| 833 | return k; |
| 834 | } |
| 835 | |
| 836 | template <typename T> |
| 837 | struct PointerHasher { |
no outgoing calls
no test coverage detected