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))