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