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 {