runtime.mSpanList.last (field)

12 uses

	runtime (current package)
		mheap.go#L378: 	last  *mspan // last span in list, or nil if none
		mheap.go#L1552: 	list.last = nil
		mheap.go#L1566: 	if list.last == span {
		mheap.go#L1567: 		list.last = span.prev
		mheap.go#L1592: 		list.last = span
		mheap.go#L1603: 	span.prev = list.last
		mheap.go#L1604: 	if list.last != nil {
		mheap.go#L1606: 		list.last.next = span
		mheap.go#L1611: 	list.last = span
		mheap.go#L1632: 		other.last.next = list.first
		mheap.go#L1633: 		list.first.prev = other.last
		mheap.go#L1637: 	other.first, other.last = nil, nil