xxhash_amd64.go 235 B

123456789101112
  1. //go:build !appengine && gc && !purego
  2. // +build !appengine,gc,!purego
  3. package xxhash
  4. // Sum64 computes the 64-bit xxHash digest of b.
  5. //
  6. //go:noescape
  7. func Sum64(b []byte) uint64
  8. //go:noescape
  9. func writeBlocks(*Digest, []byte) int