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