func runtime/internal/math.MulUintptr
8 uses
runtime/internal/math (current package)
math.go#L13: func MulUintptr(a, b uintptr) (uintptr, bool) {
runtime
chan.go#L82: mem, overflow := math.MulUintptr(elem.size, uintptr(size))
malloc.go#L1195: mem, overflow := math.MulUintptr(typ.size, uintptr(n))
map.go#L304: mem, overflow := math.MulUintptr(uintptr(hint), t.bucket.size)
slice.go#L40: tomem, overflow = math.MulUintptr(et.size, uintptr(tolen))
slice.go#L84: mem, overflow := math.MulUintptr(et.size, uintptr(cap))
slice.go#L91: mem, overflow := math.MulUintptr(et.size, uintptr(len))
slice.go#L200: capmem, overflow = math.MulUintptr(et.size, uintptr(newcap))