| 71 | // Finalization mix - force all bits of a hash block to avalanche |
| 72 | |
| 73 | FORCE_INLINE uint32_t fmix ( uint32_t h ) |
| 74 | { |
| 75 | h ^= h >> 16; |
| 76 | h *= 0x85ebca6b; |
| 77 | h ^= h >> 13; |
| 78 | h *= 0xc2b2ae35; |
| 79 | h ^= h >> 16; |
| 80 | |
| 81 | return h; |
| 82 | } |
| 83 | |
| 84 | //---------- |
| 85 |
nothing calls this directly
no outgoing calls
no test coverage detected