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

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectorPolicy.cpp421 bool G1CollectorPolicy::predict_will_fit(uint young_length, argument
425 if (young_length >= base_free_regions) {
430 double accum_surv_rate = accum_yg_surv_rate_pred((int) young_length - 1);
434 double young_other_time_ms = predict_young_other_time_ms(young_length);
442 (base_free_regions - young_length) * HeapRegion::GrainBytes;
628 uint young_length = min_young_length + diff; local
629 if (predict_will_fit(young_length, base_time_ms,
631 min_young_length = young_length;
633 max_young_length = young_length;

Completed in 39 milliseconds