Searched refs:from_list (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSet.cpp258 void HeapRegionLinkedList::add_as_head(HeapRegionLinkedList* from_list) { argument
260 hrs_assert_mt_safety_ok(from_list);
263 from_list->verify_optional();
265 if (from_list->is_empty()) return;
268 HeapRegionLinkedListIterator iter(from_list);
281 from_list->_tail->set_next(_head);
284 _tail = from_list->_tail;
286 _head = from_list->_head;
288 _length += from_list->length();
289 _region_num += from_list
297 add_as_tail(HeapRegionLinkedList* from_list) argument
[all...]
H A DheapRegionSet.hpp323 // It moves the regions from from_list to this list and empties
324 // from_list. The new regions will appear in the same order as they
325 // were in from_list and be linked in the beginning of this list.
326 void add_as_head(HeapRegionLinkedList* from_list);
328 // It moves the regions from from_list to this list and empties
329 // from_list. The new regions will appear in the same order as they
330 // were in from_list and be linked in the end of this list.
331 void add_as_tail(HeapRegionLinkedList* from_list);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DJarIndex.java349 LinkedList from_list = (LinkedList)e.getValue();
350 Iterator listItr = from_list.iterator();

Completed in 43 milliseconds