mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 23:54:05 -08:00
13 lines
205 B
Go
13 lines
205 B
Go
// +build !appengine
|
|
// +build gc
|
|
// +build !noasm
|
|
|
|
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
|