blob: 35318d7c46cbd533e194f946894e37eeaa1d50a6 [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(*Digest, []byte) int