github.com/dorkamotorka/go/src@v0.0.0-20230614113921-187095f0e316/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 //go:build !math_big_pure_go 6 // +build !math_big_pure_go 7 8 package big 9 10 // implemented in arith_$GOARCH.s 11 12 //go:noescape 13 func addVV(z, x, y []Word) (c Word) 14 15 //go:noescape 16 func subVV(z, x, y []Word) (c Word) 17 18 //go:noescape 19 func addVW(z, x []Word, y Word) (c Word) 20 21 //go:noescape 22 func subVW(z, x []Word, y Word) (c Word) 23 24 //go:noescape 25 func shlVU(z, x []Word, s uint) (c Word) 26 27 //go:noescape 28 func shrVU(z, x []Word, s uint) (c Word) 29 30 //go:noescape 31 func mulAddVWW(z, x []Word, y, r Word) (c Word) 32 33 //go:noescape 34 func addMulVVW(z, x []Word, y Word) (c Word)