go arith_decl 源码

  • 2022-07-15
  • 浏览 (1105)

golang arith_decl 代码

文件路径:/src/math/big/arith_decl.go

// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build !math_big_pure_go
// +build !math_big_pure_go

package big

// implemented in arith_$GOARCH.s
func addVV(z, x, y []Word) (c Word)
func subVV(z, x, y []Word) (c Word)
func addVW(z, x []Word, y Word) (c Word)
func subVW(z, x []Word, y Word) (c Word)
func shlVU(z, x []Word, s uint) (c Word)
func shrVU(z, x []Word, s uint) (c Word)
func mulAddVWW(z, x []Word, y, r Word) (c Word)
func addMulVVW(z, x []Word, y Word) (c Word)

相关信息

go 源码目录

相关文章

go accuracy_string 源码

go alias_test 源码

go arith 源码

go arith_amd64 源码

go arith_decl_pure 源码

go arith_decl_s390x 源码

go arith_s390x_test 源码

go arith_test 源码

go bits_test 源码

go calibrate_test 源码

0  赞