runtime.special.offset (field)

13 uses

	runtime (current package)
		heapdump.go#L459: 				p := unsafe.Pointer(s.base() + uintptr(spf.special.offset))
		heapdump.go#L658: 			p := s.base() + uintptr(spp.special.offset)
		mgcmark.go#L368: 				p := s.base() + uintptr(spf.special.offset)/s.elemsize*s.elemsize
		mgcsweep.go#L363: 		objIndex := uintptr(special.offset) / size
		mgcsweep.go#L371: 			for tmp := special; tmp != nil && uintptr(tmp.offset) < endOffset; tmp = tmp.next {
		mgcsweep.go#L380: 			for special != nil && uintptr(special.offset) < endOffset {
		mgcsweep.go#L383: 				p := s.base() + uintptr(special.offset)
		mheap.go#L1652: 	offset uint16   // span offset of object
		mheap.go#L1702: 		if offset == uintptr(x.offset) && kind == x.kind {
		mheap.go#L1707: 		if offset < uintptr(x.offset) || (offset == uintptr(x.offset) && kind < x.kind) {
		mheap.go#L1714: 	s.offset = uint16(offset)
		mheap.go#L1751: 		if offset == uintptr(s.offset) && kind == s.kind {