Home | History | Annotate | Download | only in runtime

Lines Matching full:busy

20 	busy      [_MaxMHeapList]mspan // busy lists of large objects of given length
21 busylarge mspan // busy lists of large objects length >= _MaxMHeapList
282 mSpanList_Init(&h.busy[i])
355 // First try to sweep busy spans with large objects of size >= npage,
357 for i := int(npage); i < len(h.busy); i++ {
358 if mHeap_ReclaimList(h, &h.busy[i], npage) != 0 {
371 for i := 0; i < int(npage) && i < len(h.busy); i++ {
372 reclaimed += mHeap_ReclaimList(h, &h.busy[i], npage-reclaimed)
455 mSpanList_InsertBack(&h.busy[s.npages], s)