github.com/geraldss/go/src@v0.0.0-20210511222824-ac7d0ebfc235/math/big/arith_decl.go (about)

     1  // Copyright 2010 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  // +build !math_big_pure_go
     6  
     7  package big
     8  
     9  // implemented in arith_$GOARCH.s
    10  func mulWW(x, y Word) (z1, z0 Word)
    11  func addVV(z, x, y []Word) (c Word)
    12  func subVV(z, x, y []Word) (c Word)
    13  func addVW(z, x []Word, y Word) (c Word)
    14  func subVW(z, x []Word, y Word) (c Word)
    15  func shlVU(z, x []Word, s uint) (c Word)
    16  func shrVU(z, x []Word, s uint) (c Word)
    17  func mulAddVWW(z, x []Word, y, r Word) (c Word)
    18  func addMulVVW(z, x []Word, y Word) (c Word)