xxh32zero_other.go 244 B

12345678910
  1. // +build !arm noasm
  2. package xxh32
  3. // ChecksumZero returns the 32-bit hash of input.
  4. func ChecksumZero(input []byte) uint32 { return checksumZeroGo(input) }
  5. func update(v *[4]uint32, buf *[16]byte, input []byte) {
  6. updateGo(v, buf, input)
  7. }