crc32_otherarch.go 665 B

123456789101112131415
  1. // Copyright 2011 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build !amd64,!amd64p32,!s390x
  5. package crc32
  6. func archAvailableIEEE() bool { return false }
  7. func archInitIEEE() { panic("not available") }
  8. func archUpdateIEEE(crc uint32, p []byte) uint32 { panic("not available") }
  9. func archAvailableCastagnoli() bool { return false }
  10. func archInitCastagnoli() { panic("not available") }
  11. func archUpdateCastagnoli(crc uint32, p []byte) uint32 { panic("not available") }