math/big.Int.Add (method)

34 uses

	math/big (current package)
		int.go#L141: func (z *Int) Add(x, y *Int) *Int {
		int.go#L257: 		i.Add(&i, intOne)
		int.go#L307: 			z.Add(z, intOne)
		int.go#L329: 			z.Add(z, y0)
		int.go#L357: 			z.Add(z, intOne)
		int.go#L361: 			m.Add(m, y0)
		int.go#L728: 	A.Add(t, s)
		int.go#L729: 	B.Add(r, q)
		int.go#L839: 				Ua.Add(t, s)
		int.go#L918: 		z.Add(&x, n)
		int.go#L994: 	e := new(Int).Add(p, intOne) // e = p + 1
		int.go#L1039: 		n.Add(&n, intOne)
		int.go#L1047: 	y.Add(&s, intOne)
		rat.go#L494: 	z.a.Add(&a1, &a2)

	crypto/dsa
		dsa.go#L148: 			h.Add(h, one)
		dsa.go#L248: 		s.Add(s, z)

	crypto/ecdsa
		ecdsa_legacy.go#L104: 		s.Add(s, e)

	crypto/elliptic
		params.go#L41: 	threeX.Add(threeX, x)
		params.go#L44: 	x3.Add(x3, curve.B)
		params.go#L154: 		h.Add(h, curve.P)
		params.go#L168: 		r.Add(r, curve.P)
		params.go#L192: 	z3.Add(z1, z2)
		params.go#L230: 		alpha.Add(alpha, curve.P)
		params.go#L232: 	alpha2 := new(big.Int).Add(x, delta)
		params.go#L236: 	alpha.Add(alpha, alpha2)
		params.go#L245: 		x3.Add(x3, curve.P)
		params.go#L249: 	z3 := new(big.Int).Add(y, z)
		params.go#L253: 		z3.Add(z3, curve.P)
		params.go#L257: 		z3.Add(z3, curve.P)
		params.go#L264: 		beta.Add(beta, curve.P)
		params.go#L274: 		y3.Add(y3, curve.P)

	crypto/x509
		oid.go#L165: 	firstComponent.Add(firstComponent, second)

	encoding/asn1
		asn1.go#L147: 		ret.Add(ret, bigOne)

	vendor/golang.org/x/crypto/cryptobyte
		asn1.go#L327: 		out.Add(out, bigOne)