xxh32zero_arm.go 209 B

1234567891011
  1. // +build !noasm
  2. package xxh32
  3. // ChecksumZero returns the 32-bit hash of input.
  4. //
  5. //go:noescape
  6. func ChecksumZero(input []byte) uint32
  7. //go:noescape
  8. func update(v *[4]uint32, buf *[16]byte, input []byte)