type runtime.markBits
15 uses
runtime (current package)
mbitmap.go#L132: type markBits struct {
mbitmap.go#L139: func (s *mspan) allocBitsForIndex(allocBitIndex uintptr) markBits {
mbitmap.go#L141: return markBits{bytep, mask, allocBitIndex}
mbitmap.go#L241: func markBitsForAddr(p uintptr) markBits {
mbitmap.go#L247: func (s *mspan) markBitsForIndex(objIndex uintptr) markBits {
mbitmap.go#L249: return markBits{bytep, mask, objIndex}
mbitmap.go#L252: func (s *mspan) markBitsForBase() markBits {
mbitmap.go#L253: return markBits{(*uint8)(s.gcmarkBits), uint8(1), 0}
mbitmap.go#L257: func (m markBits) isMarked() bool {
mbitmap.go#L262: func (m markBits) setMarked() {
mbitmap.go#L270: func (m markBits) setMarkedNonAtomic() {
mbitmap.go#L275: func (m markBits) clearMarked() {
mbitmap.go#L283: func markBitsForSpan(base uintptr) (mbits markBits) {
mbitmap.go#L292: func (m *markBits) advance() {
mcheckmark.go#L73: func setCheckmark(obj, base, off uintptr, mbits markBits) bool {
![]() |
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. |