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))
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |