blob: 78f95f2561037eacabadb2590525338b5bf0498c [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
balaji.nagarajan8a2a7ee2026-06-19 22:31:13 +05309// Sum64 computes the 64-bit xxHash digest of b with a zero seed.
Joey Armstrong903c69d2024-02-01 19:46:39 -050010//
11//go:noescape
12func Sum64(b []byte) uint64
13
14//go:noescape
15func writeBlocks(d *Digest, b []byte) int