blob: 9216e0a40c1a4ec60a2bbf6b79c7177eb18d4c1c [file] [log] [blame]
Akash Reddy Kankanalacf045372025-06-10 14:11:24 +05301//go:build (amd64 || arm64) && !appengine && gc && !purego
2// +build amd64 arm64
khenaidood948f772021-08-11 17:49:24 -04003// +build !appengine
4// +build gc
5// +build !purego
6
7package xxhash
8
9// Sum64 computes the 64-bit xxHash digest of b.
10//
11//go:noescape
12func Sum64(b []byte) uint64
13
14//go:noescape
15func writeBlocks(d *Digest, b []byte) int