github.com/cloudflare/circl@v1.5.0/ecc/fourq/point_noasm.go (about)

     1  //go:build !amd64 || purego
     2  // +build !amd64 purego
     3  
     4  package fourq
     5  
     6  func (P *pointR1) double()           { doubleGeneric(P) }
     7  func (P *pointR1) add(Q *pointR2)    { addGeneric(P, Q) }
     8  func (P *pointR1) mixAdd(Q *pointR3) { mixAddGeneric(P, Q) }