func math/bits.Add64
7 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)
vendor/golang.org/x/crypto/poly1305
bits_go1.13.go#L12: return bits.Add64(x, y, carry)
The pages are generated with Golds v0.2.8-preview. (GOOS=darwin GOARCH=arm64)