mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 10:41:19 +00:00
eb70fc73cd
Former-commit-id: 25dc367490dd16ef4fa1d462118aa438df1b319a [formerly 6fab78aeb8b9f54fddbad1406f97392b753a830a] Former-commit-id: 0de0bb3ef9af1735ac8ecd1aefe2d57c0f76c62d
19 lines
365 B
Go
19 lines
365 B
Go
// +build amd64,!generic arm64,!generic
|
|
|
|
package bn256
|
|
|
|
// This file contains forward declarations for the architecture-specific
|
|
// assembly implementations of these functions, provided that they exist.
|
|
|
|
// go:noescape
|
|
func gfpNeg(c, a *gfP)
|
|
|
|
//go:noescape
|
|
func gfpAdd(c, a, b *gfP)
|
|
|
|
//go:noescape
|
|
func gfpSub(c, a, b *gfP)
|
|
|
|
//go:noescape
|
|
func gfpMul(c, a, b *gfP)
|