blob: d6176526802c217429b1ec50f7aabdf6d12ae00e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// +build !appengine
// +build gc
// +build !purego
package xxhash
// Sum64 computes the 64-bit xxHash digest of b.
//
//go:noescape
func Sum64(b []byte) uint64
func writeBlocks(x *xxh, b []byte) []byte
|