MCPcopy Create free account
hub / github.com/apache/fory / Murmur3Sum64WithSeed

Function Murmur3Sum64WithSeed

go/fory/murmur.go:27–30  ·  view source on GitHub ↗
(data []byte, seed uint32)

Source from the content-addressed store, hash-verified

25)
26
27func Murmur3Sum64WithSeed(data []byte, seed uint32) uint64 {
28 h1, _ := Murmur3Sum128WithSeed(data, seed)
29 return h1
30}
31
32func MurmurHash3_x64_128(data []byte, seed int64) (uint64, uint64) {
33 return Murmur3Sum128WithSeed(data, uint32(seed))

Callers 4

GetMetaStrBytesMethod · 0.85
ComputeMetaStringHashFunction · 0.85
typeDefHeaderHashFunction · 0.85

Calls 1

Murmur3Sum128WithSeedFunction · 0.85

Tested by 1