func math/bits.Mul
9 uses
math/bits (current package)
bits.go#L445: func Mul(x, y uint) (hi, lo uint) {
math/big
arith.go#L44: hi, lo := bits.Mul(uint(x), uint(y))
arith.go#L50: hi, lo := bits.Mul(uint(x), uint(y))
arith.go#L293: t1, t0 := bits.Mul(uint(m), uint(x1))
arith.go#L300: dq1, dq0 := bits.Mul(d, qq)
bytes
bytes.go#L650: hi, lo := bits.Mul(uint(len(b)), uint(count))
crypto/internal/fips140/bigmod
nat.go#L905: hi, lo := bits.Mul(x[i], y)
slices
slices.go#L518: hi, lo := bits.Mul(uint(len(x)), uint(count))
strings
strings.go#L630: hi, lo := bits.Mul(uint(len(s)), uint(count))
 |
The pages are generated with Golds v0.8.4. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |