File: fq_amd64.go

package info (click to toggle)
golang-github-cloudflare-circl 1.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 18,064 kB
  • sloc: asm: 20,492; ansic: 1,292; makefile: 68
file content (19 lines) | stat: -rw-r--r-- 264 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//go:build amd64 && !purego
// +build amd64,!purego

package fourq

//go:noescape
func fqCmov(c, a *Fq, b int)

//go:noescape
func fqAdd(c, a, b *Fq)

//go:noescape
func fqSub(c, a, b *Fq)

//go:noescape
func fqMul(c, a, b *Fq)

//go:noescape
func fqSqr(c, a *Fq)