1 //go:build (amd64 || arm64) && !appengine && gc && !purego && !noasm 2 // +build amd64 arm64 3 // +build !appengine 4 // +build gc 5 // +build !purego 6 // +build !noasm 7 8 package xxhash 9 10 // Sum64 computes the 64-bit xxHash digest of b. 11 // 12 //go:noescape 13 func Sum64(b []byte) uint64 14 15 //go:noescape 16 func writeBlocks(s *Digest, b []byte) int 17