func runtime/internal/math.MulUintptr

11 uses

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

	runtime
		arena.go#L623: 	mem, overflow := math.MulUintptr(typ.Size_, uintptr(n))
		chan.go#L83: 	mem, overflow := math.MulUintptr(elem.Size_, uintptr(size))
		malloc.go#L1346: 	mem, overflow := math.MulUintptr(typ.Size_, uintptr(n))
		map.go#L306: 	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#L123: 	return math.MulUintptr(a, b)
		slice.go#L241: 		capmem, overflow = math.MulUintptr(et.Size_, uintptr(newcap))
		unsafe.go#L64: 	mem, overflow := math.MulUintptr(et.Size_, uintptr(len))