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  
     7  package big
     8  
     9  import "internal/cpu"
    10  
    11  func addVV_check(z, x, y []Word) (c Word)
    12  func addVV_vec(z, x, y []Word) (c Word)
    13  func addVV_novec(z, x, y []Word) (c Word)
    14  func subVV_check(z, x, y []Word) (c Word)
    15  func subVV_vec(z, x, y []Word) (c Word)
    16  func subVV_novec(z, x, y []Word) (c Word)
    17  
    18  var hasVX = cpu.S390X.HasVX
    19  

View as plain text