Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for addVW (0.03 sec)

  1. src/math/big/arith_decl.go

    //go:linkname subVV
    //go:noescape
    func subVV(z, x, y []Word) (c 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:noescape
    func addVW(z, x []Word, y Word) (c Word)
    
    // subVW should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:15:13 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top