func internal/runtime/math.MulUintptr
11 uses
internal/runtime/math (current package)
math.go#L20: func MulUintptr(a, b uintptr) (uintptr, bool) {
internal/runtime/maps
map.go#L305: groups, overflow := math.MulUintptr(uintptr(dirSize), maxTableCapacity)
map.go#L309: mem, overflow := math.MulUintptr(groups, mt.GroupSize)
runtime
arena.go#L540: mem, overflow := math.MulUintptr(typ.Size_, uintptr(n))
chan.go#L86: mem, overflow := math.MulUintptr(elem.Size_, uintptr(size))
malloc.go#L2203: mem, overflow := math.MulUintptr(typ.Size_, uintptr(n))
slice.go#L43: tomem, overflow = math.MulUintptr(et.Size_, uintptr(tolen))
slice.go#L103: mem, overflow := math.MulUintptr(et.Size_, uintptr(cap))
slice.go#L110: mem, overflow := math.MulUintptr(et.Size_, uintptr(len))
slice.go#L240: capmem, overflow = math.MulUintptr(et.Size_, uintptr(newcap))
unsafe.go#L65: mem, overflow := math.MulUintptr(et.Size_, uintptr(len))
 |
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. |