diff options
Diffstat (limited to 'vendor/github.com/cespare/xxhash/xxhash_amd64.go')
-rw-r--r-- | vendor/github.com/cespare/xxhash/xxhash_amd64.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/github.com/cespare/xxhash/xxhash_amd64.go b/vendor/github.com/cespare/xxhash/xxhash_amd64.go new file mode 100644 index 000000000..d61765268 --- /dev/null +++ b/vendor/github.com/cespare/xxhash/xxhash_amd64.go @@ -0,0 +1,12 @@ +// +build !appengine +// +build gc +// +build !purego + +package xxhash + +// Sum64 computes the 64-bit xxHash digest of b. +// +//go:noescape +func Sum64(b []byte) uint64 + +func writeBlocks(x *xxh, b []byte) []byte |