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

Function uint64_t

src/MurmurHash3.cpp:86–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84//----------
85
86FORCE_INLINE uint64_t fmix ( uint64_t k )
87{
88 k ^= k >> 33;
89 k *= BIG_CONSTANT(0xff51afd7ed558ccd);
90 k ^= k >> 33;
91 k *= BIG_CONSTANT(0xc4ceb9fe1a85ec53);
92 k ^= k >> 33;
93
94 return k;
95}
96
97//-----------------------------------------------------------------------------
98

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected