blob: 9216e0a40c1a4ec60a2bbf6b79c7177eb18d4c1c [file] [log] [blame]
Akash Reddy Kankanalac0014632025-05-21 17:12:20 +05301//go:build (amd64 || arm64) && !appengine && gc && !purego
2// +build amd64 arm64
Joey Armstrong903c69d2024-02-01 19:46:39 -05003// +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