func internal/runtime/math.MulUintptr
11 uses
internal/runtime/math (current package)
math.go#L13: func MulUintptr(a, b uintptr) (uintptr, bool) {
internal/runtime/maps
map.go#L296: groups, overflow := math.MulUintptr(uintptr(dirSize), maxTableCapacity)
map.go#L300: 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#L1760: mem, overflow := math.MulUintptr(typ.Size_, uintptr(n))
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#L65: mem, overflow := math.MulUintptr(et.Size_, uintptr(len))