2023-02-22 21:58:17 +00:00
|
|
|
//go:build (amd64 || arm64) && !appengine && gc && !purego
|
|
|
|
// +build amd64 arm64
|
2019-10-22 17:32:05 +00:00
|
|
|
// +build !appengine
|
|
|
|
// +build gc
|
|
|
|
// +build !purego
|
|
|
|
|
|
|
|
package xxhash
|
|
|
|
|
2024-10-10 11:33:36 +00:00
|
|
|
// Sum64 computes the 64-bit xxHash digest of b with a zero seed.
|
2019-10-22 17:32:05 +00:00
|
|
|
//
|
|
|
|
//go:noescape
|
|
|
|
func Sum64(b []byte) uint64
|
|
|
|
|
|
|
|
//go:noescape
|
2020-03-09 07:55:58 +00:00
|
|
|
func writeBlocks(d *Digest, b []byte) int
|