blob: 78f95f2561037eacabadb2590525338b5bf0498c [file] [log] [blame]
Abhay Kumar40252eb2025-10-13 13:25:53 +00001//go:build (amd64 || arm64) && !appengine && gc && !purego
2// +build amd64 arm64
3// +build !appengine
4// +build gc
5// +build !purego
6
7package xxhash
8
9// Sum64 computes the 64-bit xxHash digest of b with a zero seed.
10//
11//go:noescape
12func Sum64(b []byte) uint64
13
14//go:noescape
15func writeBlocks(d *Digest, b []byte) int