blob: 1a1fac9c26130447e95cd31d9aab8883e89022c9 [file] [log] [blame]
kesavandc71914f2022-03-25 11:19:03 +05301//go:build (amd64 || arm64) && !appengine && gc && !purego && !noasm
2// +build amd64 arm64
3// +build !appengine
4// +build gc
5// +build !purego
6// +build !noasm
7
8package xxhash
9
10// Sum64 computes the 64-bit xxHash digest of b.
11//
12//go:noescape
13func Sum64(b []byte) uint64
14
15//go:noescape
16func writeBlocks(d *Digest, b []byte) int