| Akash Reddy Kankanala | cf04537 | 2025-06-10 14:11:24 +0530 | [diff] [blame] | 1 | //go:build (amd64 || arm64) && !appengine && gc && !purego |
| 2 | // +build amd64 arm64 |
| khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 3 | // +build !appengine |
| 4 | // +build gc |
| 5 | // +build !purego |
| 6 | |
| 7 | package xxhash |
| 8 | |
| Abhay Kumar | a2ae599 | 2025-11-10 14:02:24 +0000 | [diff] [blame^] | 9 | // Sum64 computes the 64-bit xxHash digest of b with a zero seed. |
| khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 10 | // |
| 11 | //go:noescape |
| 12 | func Sum64(b []byte) uint64 |
| 13 | |
| 14 | //go:noescape |
| 15 | func writeBlocks(d *Digest, b []byte) int |