Matteo Scandolo | d525ae3 | 2020-04-02 17:27:29 -0700 | [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 | func writeBlocks(x *xxh, b []byte) []byte |