runtime.mSpanList.first (field)

23 uses

	runtime (current package)
		mgcwork.go#L363: 		if work.wbufSpans.free.first != nil {
		mgcwork.go#L365: 			s = work.wbufSpans.free.first
		mgcwork.go#L471: 			span := work.wbufSpans.free.first
		mheap.go#L377: 	first *mspan // first span in list, or nil if none
		mheap.go#L1551: 	list.first = nil
		mheap.go#L1561: 	if list.first == span {
		mheap.go#L1562: 		list.first = span.next
		mheap.go#L1577: 	return list.first == nil
		mheap.go#L1585: 	span.next = list.first
		mheap.go#L1586: 	if list.first != nil {
		mheap.go#L1589: 		list.first.prev = span
		mheap.go#L1594: 	list.first = span
		mheap.go#L1609: 		list.first = span
		mheap.go#L1623: 	for s := other.first; s != nil; s = s.next {
		mheap.go#L1632: 		other.last.next = list.first
		mheap.go#L1633: 		list.first.prev = other.last
		mheap.go#L1634: 		list.first = other.first
		mheap.go#L1637: 	other.first, other.last = nil, nil
		stack.go#L186: 	s := list.first
		stack.go#L390: 			s = stackLarge.free[log2npage].first
		stack.go#L1190: 		for s := list.first; s != nil; {
		stack.go#L1206: 		for s := stackLarge.free[i].first; s != nil; {