func math/bits.Add
8 uses
math/bits (current package)
bits.go#L354: 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#L197: lo, cc := bits.Add(uint(z0), uint(c), 0)
arith.go#L228: _, c := bits.Add(t0, uint(x0), 0)
arith.go#L229: t1, _ = bits.Add(t1, uint(x1), c)
 |
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. |