Searched refs:survivors (Results 1 - 9 of 9) sorted by relevance

/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1Policy.hpp164 virtual void transfer_survivors_to_cset(const G1SurvivorRegions* survivors) = 0;
H A Dg1CollectionSet.hpp173 double finalize_young_part(double target_pause_time_ms, G1SurvivorRegions* survivors);
H A Dg1CollectionSet.cpp354 double G1CollectionSet::finalize_young_part(double target_pause_time_ms, G1SurvivorRegions* survivors) { argument
375 uint survivor_region_length = survivors->length();
382 survivors->convert_to_eden();
387 log_trace(gc, ergo, cset)("Add young regions to CSet. eden: %u regions, survivors: %u regions, predicted young region time: %1.2fms, target pause time: %1.2fms",
H A Dg1DefaultPolicy.hpp352 void transfer_survivors_to_cset(const G1SurvivorRegions* survivors);
360 // maximum amount of survivors regions.
363 // The limit on the number of regions allocated for survivors.
H A Dg1DefaultPolicy.cpp217 // This is how many young regions we already have (currently: the survivors).
443 // Reset survivors SurvRateGroup.
1141 void G1DefaultPolicy::transfer_survivors_to_cset(const G1SurvivorRegions* survivors) { argument
1148 for (GrowableArrayIterator<HeapRegion*> it = survivors->regions()->begin();
1149 it != survivors->regions()->end();
H A Dg1ConcurrentMark.hpp244 void init(const G1SurvivorRegions* survivors, G1ConcurrentMark* cm);
H A Dg1ConcurrentMark.cpp257 void G1CMRootRegions::init(const G1SurvivorRegions* survivors, G1ConcurrentMark* cm) { argument
258 _survivors = survivors;
265 // Currently, only survivors can be root regions.
278 // Currently, only survivors can be root regions.
305 // Currently, only survivors can be root regions.
309 "we should have claimed all survivors, claimed index = %u, length = %u",
920 // Currently, only survivors can be root regions.
/openjdk10/jdk/test/java/util/concurrent/tck/
H A DCollection8Test.java299 ArrayList survivors = new ArrayList();
334 case 0: survivors.addAll(c); break;
335 case 1: survivors.addAll(Arrays.asList(c.toArray())); break;
336 case 2: c.forEach(survivors::add); break;
337 case 3: for (Object e : c) survivors.add(e); break;
341 assertTrue(orig.containsAll(survivors));
344 assertTrue(c.containsAll(survivors));
345 assertTrue(survivors.containsAll(rejects));
366 System.err.printf("survivors=%s%n", survivors);
[all...]
H A DJSR166TestCase.java808 Thread[] survivors = new Thread[7];
809 int count = Thread.enumerate(survivors);
811 Thread thread = survivors[i];

Completed in 73 milliseconds