crypto/internal/nistec/fiat.P224Element.Mul (method)
56 uses
crypto/internal/nistec/fiat (current package)
p224.go#L112: func (e *P224Element) Mul(t1, t2 *P224Element) *P224Element {
p224_invert.go#L39: t0.Mul(x, z)
p224_invert.go#L41: z.Mul(x, z)
p224_invert.go#L46: t1.Mul(z, t1)
p224_invert.go#L51: t1.Mul(t1, t2)
p224_invert.go#L55: t0.Mul(t0, t1)
p224_invert.go#L60: z.Mul(z, t1)
p224_invert.go#L65: t0.Mul(t0, t1)
p224_invert.go#L70: z.Mul(z, t1)
p224_invert.go#L75: z.Mul(z, t1)
p224_invert.go#L80: t0.Mul(t0, t1)
p224_invert.go#L84: z.Mul(z, t0)
crypto/internal/nistec
p224.go#L123: y2.Mul(y2, x)
p224.go#L158: x := new(fiat.P224Element).Mul(p.x, zinv)
p224.go#L159: y := new(fiat.P224Element).Mul(p.y, zinv)
p224.go#L182: x := new(fiat.P224Element).Mul(p.x, zinv)
p224.go#L203: x := new(fiat.P224Element).Mul(p.x, zinv)
p224.go#L204: y := new(fiat.P224Element).Mul(p.y, zinv)
p224.go#L219: t0 := new(fiat.P224Element).Mul(p1.x, p2.x) // t0 := X1 * X2
p224.go#L220: t1 := new(fiat.P224Element).Mul(p1.y, p2.y) // t1 := Y1 * Y2
p224.go#L221: t2 := new(fiat.P224Element).Mul(p1.z, p2.z) // t2 := Z1 * Z2
p224.go#L224: t3.Mul(t3, t4) // t3 := t3 * t4
p224.go#L229: t4.Mul(t4, x3) // t4 := t4 * X3
p224.go#L234: x3.Mul(x3, y3) // X3 := X3 * Y3
p224.go#L237: z3 := new(fiat.P224Element).Mul(p224B(), t2) // Z3 := b * t2
p224.go#L243: y3.Mul(p224B(), y3) // Y3 := b * Y3
p224.go#L253: t1.Mul(t4, y3) // t1 := t4 * Y3
p224.go#L254: t2.Mul(t0, y3) // t2 := t0 * Y3
p224.go#L255: y3.Mul(x3, z3) // Y3 := X3 * Z3
p224.go#L257: x3.Mul(t3, x3) // X3 := t3 * X3
p224.go#L259: z3.Mul(t4, z3) // Z3 := t4 * Z3
p224.go#L260: t1.Mul(t3, t0) // t1 := t3 * t0
p224.go#L277: t3 := new(fiat.P224Element).Mul(p.x, p.y) // t3 := X * Y
p224.go#L279: z3 := new(fiat.P224Element).Mul(p.x, p.z) // Z3 := X * Z
p224.go#L281: y3 := new(fiat.P224Element).Mul(p224B(), t2) // Y3 := b * t2
p224.go#L287: y3.Mul(x3, y3) // Y3 := X3 * Y3
p224.go#L288: x3.Mul(x3, t3) // X3 := X3 * t3
p224.go#L291: z3.Mul(p224B(), z3) // Z3 := b * Z3
p224.go#L299: t0.Mul(t0, z3) // t0 := t0 * Z3
p224.go#L301: t0.Mul(p.y, p.z) // t0 := Y * Z
p224.go#L303: z3.Mul(t0, z3) // Z3 := t0 * Z3
p224.go#L305: z3.Mul(t0, t1) // Z3 := t0 * t1
p224_sqrt.go#L69: r.Mul(x, r)
p224_sqrt.go#L71: r.Mul(x, r)
p224_sqrt.go#L76: t0.Mul(r, t0)
p224_sqrt.go#L78: r.Mul(x, t1)
p224_sqrt.go#L82: t0.Mul(t0, t1)
p224_sqrt.go#L87: t0.Mul(t0, t1)
p224_sqrt.go#L92: r.Mul(r, t1)
p224_sqrt.go#L96: t0.Mul(t0, t1)
p224_sqrt.go#L101: t0.Mul(t0, t1)
p224_sqrt.go#L105: r.Mul(r, t0)
p224_sqrt.go#L109: v.Mul(v, x)
p224_sqrt.go#L112: r.Mul(r, x)
p224_sqrt.go#L129: v.Select(t0.Mul(v, &p224GG[96-i]), v, cond)
p224_sqrt.go#L130: r.Select(t0.Mul(r, &p224GG[96-i-1]), r, cond)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |