blob: ad14b807f4d96913a9c77366a61f075b188554cc [file] [log] [blame]
khenaidood948f772021-08-11 17:49:24 -04001// +build !appengine
2// +build gc
3// +build !purego
4
5package xxhash
6
7// Sum64 computes the 64-bit xxHash digest of b.
8//
9//go:noescape
10func Sum64(b []byte) uint64
11
12//go:noescape
13func writeBlocks(d *Digest, b []byte) int