math/big.Int.Add (method)
41 uses
math/big (current package)
int.go#L116: func (z *Int) Add(x, y *Int) *Int {
int.go#L253: z.Add(z, intOne)
int.go#L275: z.Add(z, y0)
int.go#L304: z.Add(z, intOne)
int.go#L308: m.Add(m, y0)
int.go#L641: A.Add(t, s)
int.go#L642: B.Add(r, q)
int.go#L752: Ua.Add(t, s)
int.go#L829: z.Add(&x, n)
int.go#L898: e := new(Int).Add(p, intOne) // e = p + 1
int.go#L941: n.Add(&n, intOne)
int.go#L949: y.Add(&s, intOne)
rat.go#L498: z.a.Add(&a1, &a2)
crypto/dsa
dsa.go#L148: h.Add(h, one)
dsa.go#L248: s.Add(s, z)
crypto/ecdsa
ecdsa.go#L144: k.Add(k, one)
ecdsa.go#L269: s.Add(s, e)
crypto/elliptic
elliptic.go#L64: threeX.Add(threeX, x)
elliptic.go#L67: x3.Add(x3, curve.B)
elliptic.go#L146: h.Add(h, curve.P)
elliptic.go#L160: r.Add(r, curve.P)
elliptic.go#L184: z3.Add(z1, z2)
elliptic.go#L209: alpha.Add(alpha, curve.P)
elliptic.go#L211: alpha2 := new(big.Int).Add(x, delta)
elliptic.go#L215: alpha.Add(alpha, alpha2)
elliptic.go#L224: x3.Add(x3, curve.P)
elliptic.go#L228: z3 := new(big.Int).Add(y, z)
elliptic.go#L232: z3.Add(z3, curve.P)
elliptic.go#L236: z3.Add(z3, curve.P)
elliptic.go#L243: beta.Add(beta, curve.P)
elliptic.go#L253: y3.Add(y3, curve.P)
crypto/rand
util.go#L91: p.Add(p, bigMod)
crypto/rsa
rsa.go#L539: m.Add(m, priv.Primes[0])
rsa.go#L544: m.Add(m, m2)
rsa.go#L553: m2.Add(m2, prime)
rsa.go#L556: m.Add(m, m2)
encoding/asn1
asn1.go#L146: ret.Add(ret, bigOne)
github.com/jackc/pgtype
numeric.go#L501: accum.Add(accum, big.NewInt(int64accum))
numeric.go#L631: fracPart.Add(fracPart, divisor)
golang.org/x/crypto/ssh
messages.go#L636: out.Add(out, bigOne)
vendor/golang.org/x/crypto/cryptobyte
asn1.go#L315: out.Add(out, bigOne)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |