runtime.special.next (field)

12 uses

	runtime (current package)
		heapdump.go#L454: 			for sp := s.specials; sp != nil; sp = sp.next {
		heapdump.go#L653: 		for sp := s.specials; sp != nil; sp = sp.next {
		mgcmark.go#L360: 			for sp := s.specials; sp != nil; sp = sp.next {
		mgcsweep.go#L371: 			for tmp := special; tmp != nil && uintptr(tmp.offset) < endOffset; tmp = tmp.next {
		mgcsweep.go#L387: 					special = special.next
		mgcsweep.go#L393: 					specialp = &special.next
		mgcsweep.go#L399: 			specialp = &special.next
		mheap.go#L1651: 	next   *special // linked list in span
		mheap.go#L1710: 		t = &x.next
		mheap.go#L1715: 	s.next = *t
		mheap.go#L1752: 			*t = s.next
		mheap.go#L1756: 		t = &s.next