crypto/internal/edwards25519/field.Element.Set (method)

10 uses

	crypto/internal/edwards25519/field (current package)
		fe.go#L185: func (v *Element) Set(a *Element) *Element {

	crypto/internal/edwards25519
		edwards25519.go#L180: 	v.x.Set(xx)
		edwards25519.go#L181: 	v.y.Set(y)
		edwards25519.go#L203: 	v.X.Set(&p.x)
		edwards25519.go#L204: 	v.Y.Set(&p.y)
		edwards25519.go#L205: 	v.Z.Set(&p.z)
		edwards25519.go#L236: 	v.Z.Set(&p.z)
		edwards25519.go#L376: 	v.y.Set(&p.y)
		edwards25519.go#L377: 	v.z.Set(&p.z)

	crypto/ecdh
		x25519.go#L97: 	x3.Set(&x1)