github.com/amazechain/amc@v0.1.3/common/crypto/bn256/cloudflare/gfp_decl.go (about)

     1  //go: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  import (
     9  	"golang.org/x/sys/cpu"
    10  )
    11  
    12  var hasBMI2 = cpu.X86.HasBMI2
    13  
    14  // go:noescape
    15  func gfpNeg(c, a *gfP)
    16  
    17  //go:noescape
    18  func gfpAdd(c, a, b *gfP)
    19  
    20  //go:noescape
    21  func gfpSub(c, a, b *gfP)
    22  
    23  //go:noescape
    24  func gfpMul(c, a, b *gfP)