func math/bits.Add
18 uses
math/bits (current package)
bits.go#L360: func Add(x, y, carry uint) (sum, carryOut uint) {
math/big
arith.go#L53: lo, cc = bits.Add(lo, uint(c), 0)
arith.go#L67: zi, cc := bits.Add(uint(x[i]), uint(y[i]), uint(c))
arith.go#L90: zi, cc := bits.Add(uint(x[i]), uint(c), 0)
arith.go#L112: zi, cc := bits.Add(uint(x[i]), uint(c), 0)
arith.go#L201: lo, cc := bits.Add(uint(z0), uint(c), 0)
arith.go#L232: _, c := bits.Add(t0, uint(x0), 0)
arith.go#L233: t1, _ = bits.Add(t1, uint(x1), c)
crypto/internal/bigmod
nat.go#L281: xLimbs[i], c = bits.Add(xLimbs[i], yLimbs[i], c)
nat.go#L423: xLimbs[i], carry = bits.Add(l, l, carry)
nat.go#L604: T[n+i], c = bits.Add(c1, c2, c)
nat.go#L632: T[n+i], c = bits.Add(c1, c2, c)
nat.go#L646: T[n+i], c = bits.Add(c1, c2, c)
nat.go#L660: T[n+i], c = bits.Add(c1, c2, c)
nat.go#L676: lo, c := bits.Add(lo, z[i], 0)
nat.go#L679: hi, _ = bits.Add(hi, 0, c)
nat.go#L680: lo, c = bits.Add(lo, carry, 0)
nat.go#L681: hi, _ = bits.Add(hi, 0, c)
|
The pages are generated with Golds v0.6.7. (GOOS=linux 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. |