MCPcopy
hub / github.com/uber/aresdb / Murmur3Sum64

Function Murmur3Sum64

utils/hash.go:202–205  ·  view source on GitHub ↗

Murmur3Sum64 use Murmur3Sum128 to generate 64bit hash

(key unsafe.Pointer, bytes int, seed uint32)

Source from the content-addressed store, hash-verified

200
201// Murmur3Sum64 use Murmur3Sum128 to generate 64bit hash
202func Murmur3Sum64(key unsafe.Pointer, bytes int, seed uint32) uint64 {
203 out := Murmur3Sum128(key, bytes, seed)
204 return out[0]
205}

Callers 2

computeHLLValueFunction · 0.92
hash_test.goFile · 0.85

Calls 1

Murmur3Sum128Function · 0.85

Tested by

no test coverage detected