arith_decl_s390x.go 509 B

12345678910111213141516171819
  1. // Copyright 2016 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. //go:build ignore
  5. // +build ignore
  6. package big
  7. import "internal/cpu"
  8. func addVV_check(z, x, y []Word) (c Word)
  9. func addVV_vec(z, x, y []Word) (c Word)
  10. func addVV_novec(z, x, y []Word) (c Word)
  11. func subVV_check(z, x, y []Word) (c Word)
  12. func subVV_vec(z, x, y []Word) (c Word)
  13. func subVV_novec(z, x, y []Word) (c Word)
  14. var hasVX = cpu.S390X.HasVX