github.com/xfond/eth-implementation@v1.8.9-0.20180514135602-f6bc65fc6811/crypto/bn256/cloudflare/gfp_decl.go (about)

     1  // +build amd64,!generic arm64,!generic
     2  
     3  package bn256
     4  
     5  // This file contains forward declarations for the architecture-specific
     6  // assembly implementations of these functions, provided that they exist.
     7  
     8  // go:noescape
     9  func gfpNeg(c, a *gfP)
    10  
    11  //go:noescape
    12  func gfpAdd(c, a, b *gfP)
    13  
    14  //go:noescape
    15  func gfpSub(c, a, b *gfP)
    16  
    17  //go:noescape
    18  func gfpMul(c, a, b *gfP)