File: fp_noasm.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 (12 lines) | stat: -rw-r--r-- 446 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
//go:build !amd64 || purego
// +build !amd64 purego

package fp448

func cmov(x, y *Elt, n uint)  { cmovGeneric(x, y, n) }
func cswap(x, y *Elt, n uint) { cswapGeneric(x, y, n) }
func add(z, x, y *Elt)        { addGeneric(z, x, y) }
func sub(z, x, y *Elt)        { subGeneric(z, x, y) }
func addsub(x, y *Elt)        { addsubGeneric(x, y) }
func mul(z, x, y *Elt)        { mulGeneric(z, x, y) }
func sqr(z, x *Elt)           { sqrGeneric(z, x) }