math/big.Int.Set (method)

37 uses

	math/big (current package)
		int.go#L95: func (z *Int) Set(x *Int) *Int {
		int.go#L128: 	z.Set(x)
		int.go#L135: 	z.Set(x)
		int.go#L261: 	z.Set(intOne)
		int.go#L328: 		y0 = new(Int).Set(y)
		int.go#L359: 		y0 = new(Int).Set(y)
		int.go#L594: 			m = new(Int).Set(m)
		int.go#L625: 			z.Set(b)
		int.go#L627: 			z.Set(a)
		int.go#L845: 			B.Set(b)
		int.go#L859: 		x.Set(Ua)
		int.go#L865: 	z.Set(A)
		int.go#L913: 		z.Set(&x)
		int.go#L935: 	a.Set(x)
		int.go#L936: 	b.Set(y)
		int.go#L973: 		a.Set(&b)
		int.go#L974: 		b.Set(&c)
		int.go#L1049: 		t.Set(&b)
		int.go#L1056: 			return z.Set(&y)
		rat.go#L64: 	z.b.Set(intOne)
		rat.go#L338: 	z.a.Set(x)
		rat.go#L360: 		z.a.Set(&x.a)
		rat.go#L361: 		z.b.Set(&x.b)
		rat.go#L477: 		z.Set(x)

	crypto/elliptic
		params.go#L130: 		x3.Set(x2)
		params.go#L131: 		y3.Set(y2)
		params.go#L132: 		z3.Set(z2)
		params.go#L136: 		x3.Set(x1)
		params.go#L137: 		y3.Set(y1)
		params.go#L138: 		z3.Set(z1)
		params.go#L177: 	x3.Set(r)
		params.go#L184: 	y3.Set(r)
		params.go#L234: 	alpha2.Set(alpha)

	crypto/rsa
		rsa.go#L458: 		n := new(big.Int).Set(bigOne)
		rsa.go#L459: 		totient := new(big.Int).Set(bigOne)
		rsa.go#L612: 		values.R = new(big.Int).Set(r)

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