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))
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |