runtime.mspan.limit (field)
12 uses
runtime (current package)
mbitmap.go#L345: print(" span.base()=", hex(s.base()), " span.limit=", hex(s.limit), " span.state=", state, "\n")
mbitmap.go#L379: if state := s.state.get(); state != mSpanInUse || p < s.base() || p >= s.limit {
mbitmap.go#L575: } else if s.state.get() != mSpanInUse || dst < s.base() || s.limit <= dst {
mcache.go#L246: s.limit = s.base() + size
mcentral.go#L240: s.limit = s.base() + size*n
mgcmark.go#L1469: print(" s.base()=", hex(s.base()), " s.limit=", hex(s.limit), " s.spanclass=", s.spanclass, " s.elemsize=", s.elemsize, " s.state=")
mgcsweep.go#L548: s.limit = 0 // prevent mlookup from finding this span
mheap.go#L463: limit uintptr // end of data in span
mheap.go#L614: return b < s.limit
mheap.go#L684: if s == nil || s.state.get() != mSpanInUse || p < s.base() || p >= s.limit {
mheap.go#L1218: s.limit = s.base() + s.npages*pageSize
signal_unix.go#L394: if s != nil && s.state.get() == mSpanManual && s.base() < sp && sp < s.limit {
 |
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. |