math/big.Int.Set (method)

39 uses

	math/big (current package)
		int.go#L73: func (z *Int) Set(x *Int) *Int {
		int.go#L103: 	z.Set(x)
		int.go#L110: 	z.Set(x)
		int.go#L267: 		y0 = new(Int).Set(y)
		int.go#L299: 		y0 = new(Int).Set(y)
		int.go#L535: 			z.Set(b)
		int.go#L537: 			z.Set(a)
		int.go#L654: 		t.Set(Ub)
		int.go#L657: 		Ua.Set(t)
		int.go#L765: 			B.Set(b)
		int.go#L831: 		z.Set(&x)
		int.go#L848: 	a.Set(x)
		int.go#L849: 	b.Set(y)
		int.go#L886: 		a.Set(&b)
		int.go#L887: 		b.Set(&c)
		int.go#L958: 		t.Set(&b)
		int.go#L965: 			return z.Set(&y)
		rat.go#L64: 	z.b.Set(intOne)
		rat.go#L334: 	z.a.Set(x)
		rat.go#L356: 		z.a.Set(&x.a)
		rat.go#L357: 		z.b.Set(&x.b)
		rat.go#L473: 		z.Set(x)

	crypto/elliptic
		elliptic.go#L122: 		x3.Set(x2)
		elliptic.go#L123: 		y3.Set(y2)
		elliptic.go#L124: 		z3.Set(z2)
		elliptic.go#L128: 		x3.Set(x1)
		elliptic.go#L129: 		y3.Set(y1)
		elliptic.go#L130: 		z3.Set(z1)
		elliptic.go#L169: 	x3.Set(r)
		elliptic.go#L176: 	y3.Set(r)
		elliptic.go#L213: 	alpha2.Set(alpha)

	crypto/rsa
		rsa.go#L209: 	modulus := new(big.Int).Set(bigOne)
		rsa.go#L318: 		n := new(big.Int).Set(bigOne)
		rsa.go#L319: 		totient := new(big.Int).Set(bigOne)
		rsa.go#L480: 		values.R = new(big.Int).Set(r)
		rsa.go#L525: 		cCopy := new(big.Int).Set(c)

	github.com/jackc/pgtype
		numeric.go#L367: 	num.Set(dst.Int)
		numeric.go#L533: 			accum.Set(reduced)

	vendor/golang.org/x/crypto/cryptobyte
		asn1.go#L627: 			out.(*big.Int).Set(defaultValue.(*big.Int))