func runtime/internal/math.MulUintptr

9 uses

	runtime/internal/math (current package)
		math.go#L13: func MulUintptr(a, b uintptr) (uintptr, bool) {

	runtime
		chan.go#L83: 	mem, overflow := math.MulUintptr(elem.size, uintptr(size))
		malloc.go#L1277: 	mem, overflow := math.MulUintptr(typ.size, uintptr(n))
		map.go#L305: 	mem, overflow := math.MulUintptr(uintptr(hint), t.bucket.size)
		slice.go#L42: 		tomem, overflow = math.MulUintptr(et.size, uintptr(tolen))
		slice.go#L89: 	mem, overflow := math.MulUintptr(et.size, uintptr(cap))
		slice.go#L96: 		mem, overflow := math.MulUintptr(et.size, uintptr(len))
		slice.go#L125: 	mem, overflow := math.MulUintptr(et.size, uintptr(len))
		slice.go#L248: 		capmem, overflow = math.MulUintptr(et.size, uintptr(newcap))