const runtime.logMaxPackedValue
11 uses
runtime (current package)
mpagealloc.go#L303: if levelLogPages[0] > logMaxPackedValue {
mpagealloc.go#L906: maxPackedValue = 1 << logMaxPackedValue
mpagealloc.go#L907: logMaxPackedValue = logPallocChunkPages + (summaryLevels-1)*summaryLevelBits
mpagealloc.go#L910: uint64(pallocChunkPages<<logMaxPackedValue) |
mpagealloc.go#L911: uint64(pallocChunkPages<<(2*logMaxPackedValue)))
mpagealloc.go#L927: ((uint64(max) & (maxPackedValue - 1)) << logMaxPackedValue) |
mpagealloc.go#L928: ((uint64(end) & (maxPackedValue - 1)) << (2 * logMaxPackedValue)))
mpagealloc.go#L944: return uint((uint64(p) >> logMaxPackedValue) & (maxPackedValue - 1))
mpagealloc.go#L952: return uint((uint64(p) >> (2 * logMaxPackedValue)) & (maxPackedValue - 1))
mpagealloc.go#L961: uint((uint64(p) >> logMaxPackedValue) & (maxPackedValue - 1)),
mpagealloc.go#L962: uint((uint64(p) >> (2 * logMaxPackedValue)) & (maxPackedValue - 1))
![]() |
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. |