Home | History | Annotate | Download | only in runtime

Lines Matching full:busy

34 	busy      [_MaxMHeapList]mSpanList // busy lists of large spans of given length
35 busylarge mSpanList // busy lists of large spans length >= _MaxMHeapList
514 h.busy[i].init()
587 list.insertBack(s) // Puts it back on a busy list. s is not in the treap at this point.
614 // First try to sweep busy spans with large objects of size >= npage,
616 for i := int(npage); i < len(h.busy); i++ {
617 if h.reclaimList(&h.busy[i], npage) != 0 {
630 for i := 0; i < int(npage) && i < len(h.busy); i++ {
631 reclaimed += h.reclaimList(&h.busy[i], npage-reclaimed)
718 if s.npages < uintptr(len(h.busy)) {
719 h.busy[s.npages].insertBack(s)
1008 // s must be on a busybusy or h.busylarge) or unlinked.
1100 if npages < uintptr(len(h.busy)) {
1101 return &h.busy[npages]