Source File
arith_decl.go
Belonging Package
math/big
// 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_gopackage bigimport _ // for linkname// implemented in arith_$GOARCH.s// addVV should be an internal detail,// but widely used packages access it using linkname.// Notable members of the hall of shame include:// - github.com/remyoudompheng/bigfft//// Do not remove or change the type signature.// See go.dev/issue/67401.////go:linkname addVV//go:noescapefunc (, , []Word) ( Word)// subVV should be an internal detail,// but widely used packages access it using linkname.// Notable members of the hall of shame include:// - github.com/remyoudompheng/bigfft//// Do not remove or change the type signature.// See go.dev/issue/67401.////go:linkname subVV//go:noescapefunc (, , []Word) ( Word)// addVW should be an internal detail,// but widely used packages access it using linkname.// Notable members of the hall of shame include:// - github.com/remyoudompheng/bigfft//// Do not remove or change the type signature.// See go.dev/issue/67401.////go:linkname addVW//go:noescapefunc (, []Word, Word) ( Word)// subVW should be an internal detail,// but widely used packages access it using linkname.// Notable members of the hall of shame include:// - github.com/remyoudompheng/bigfft//// Do not remove or change the type signature.// See go.dev/issue/67401.////go:linkname subVW//go:noescapefunc (, []Word, Word) ( Word)// shlVU should be an internal detail,// but widely used packages access it using linkname.// Notable members of the hall of shame include:// - github.com/remyoudompheng/bigfft//// Do not remove or change the type signature.// See go.dev/issue/67401.////go:linkname shlVU//go:noescapefunc (, []Word, uint) ( Word)//go:noescapefunc (, []Word, uint) ( Word)// mulAddVWW should be an internal detail,// but widely used packages access it using linkname.// Notable members of the hall of shame include:// - github.com/remyoudompheng/bigfft//// Do not remove or change the type signature.// See go.dev/issue/67401.////go:linkname mulAddVWW//go:noescapefunc (, []Word, , Word) ( Word)// addMulVVW should be an internal detail,// but widely used packages access it using linkname.// Notable members of the hall of shame include:// - github.com/remyoudompheng/bigfft//// Do not remove or change the type signature.// See go.dev/issue/67401.////go:linkname addMulVVW//go:noescapefunc (, []Word, Word) ( Word)
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |