MCPcopy Create free account
hub / github.com/citusdata/postgresql-hll / uint32_t

Function uint32_t

src/MurmurHash3.cpp:73–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71// Finalization mix - force all bits of a hash block to avalanche
72
73FORCE_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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected