Source file src/math/big/arith_decl_s390x.go
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 5 //go:build !math_big_pure_go 6 // +build !math_big_pure_go 7 8 package big 9 10 import "internal/cpu" 11 12 func addVV_check(z, x, y []Word) (c Word) 13 func addVV_vec(z, x, y []Word) (c Word) 14 func addVV_novec(z, x, y []Word) (c Word) 15 func subVV_check(z, x, y []Word) (c Word) 16 func subVV_vec(z, x, y []Word) (c Word) 17 func subVV_novec(z, x, y []Word) (c Word) 18 19 var hasVX = cpu.S390X.HasVX 20