Searched defs:ref_lists (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/memory/
H A DreferenceProcessor.cpp805 void ReferenceProcessor::balance_queues(DiscoveredList ref_lists[]) argument
810 gclog_or_tty->print_cr("\nBalance ref_lists ");
814 total_refs += ref_lists[i].length();
816 gclog_or_tty->print("%d ", ref_lists[i].length());
827 move_all = ref_lists[from_idx].length() > 0;
829 while ((ref_lists[from_idx].length() > avg_refs) ||
832 if (ref_lists[to_idx].length() < avg_refs) {
837 refs_to_move = MIN2(ref_lists[from_idx].length(),
838 avg_refs - ref_lists[to_idx].length());
840 refs_to_move = MIN2(ref_lists[from_id
[all...]

Completed in 49 milliseconds