2017-02-07 11:42:02 +00:00
|
|
|
// +build !appengine
|
|
|
|
// +build gc
|
2018-12-04 16:46:31 +00:00
|
|
|
// +build !purego
|
2017-02-07 11:42:02 +00:00
|
|
|
|
|
|
|
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
|