func math/bits.Add64
10 uses
math/bits (current package)
bits.go#L359: s64, c64 := Add64(uint64(x), uint64(y), uint64(carry))
bits.go#L380: func Add64(x, y, carry uint64) (sum, carryOut uint64) {
math
fma.go#L142: pm2, c = bits.Add64(pm2, zm2, 0)
fma.go#L143: pm1, _ = bits.Add64(pm1, zm1, c)
trig_reduce.go#L51: lo, c := bits.Add64(z1lo, z2hi, 0)
trig_reduce.go#L52: hi, _ := bits.Add64(z0lo, z1hi, c)
golang.org/x/crypto/poly1305
bits_go1.13.go#L13: return bits.Add64(x, y, carry)
golang.org/x/exp/rand
rng.go#L63: pcg.low, carry = bits.Add64(pcg.low, incLow, 0)
rng.go#L64: pcg.high, _ = bits.Add64(pcg.high, incHigh, carry)
vendor/golang.org/x/crypto/poly1305
bits_go1.13.go#L12: return bits.Add64(x, y, carry)
 |
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. |