VictoriaMetrics/vendor/github.com/cespare/xxhash/v2/xxhash_asm.go

16 lines
318 B
Go
Raw Normal View History

2022-12-05 10:01:57 +01:00
//go:build (amd64 || arm64) && !appengine && gc && !purego
// +build amd64 arm64
2019-05-22 23:16:55 +02:00
// +build !appengine
// +build gc
// +build !purego
package xxhash
2024-04-11 09:46:22 +02:00
// Sum64 computes the 64-bit xxHash digest of b with a zero seed.
2019-05-22 23:16:55 +02:00
//
//go:noescape
func Sum64(b []byte) uint64
//go:noescape
2019-11-19 20:05:37 +01:00
func writeBlocks(d *Digest, b []byte) int