func runtime/internal/math.MulUintptr
10 uses
runtime/internal/math (current package)
math.go#L13: func MulUintptr(a, b uintptr) (uintptr, bool) {
runtime
arena.go#L540: mem, overflow := math.MulUintptr(typ.Size_, uintptr(n))
chan.go#L84: mem, overflow := math.MulUintptr(elem.Size_, uintptr(size))
malloc.go#L1427: mem, overflow := math.MulUintptr(typ.Size_, uintptr(n))
map.go#L319: mem, overflow := math.MulUintptr(uintptr(hint), t.Bucket.Size_)
slice.go#L42: tomem, overflow = math.MulUintptr(et.Size_, uintptr(tolen))
slice.go#L102: mem, overflow := math.MulUintptr(et.Size_, uintptr(cap))
slice.go#L109: mem, overflow := math.MulUintptr(et.Size_, uintptr(len))
slice.go#L239: capmem, overflow = math.MulUintptr(et.Size_, uintptr(newcap))
unsafe.go#L64: mem, overflow := math.MulUintptr(et.Size_, uintptr(len))
 |
The pages are generated with Golds v0.7.6. (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. |