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

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsurvRateGroup.cpp148 SurvRateGroup::record_surviving_words(int age_in_group, size_t surv_words) { argument
149 guarantee( 0 <= age_in_group && (size_t) age_in_group < _region_num,
151 guarantee( _surv_rate[age_in_group] <= 0.00001,
155 _surv_rate[age_in_group] = surv_rate;
156 _surv_rate_pred[age_in_group]->add(surv_rate);
157 if ((size_t)age_in_group < _summary_surv_rates_len) {
158 _summary_surv_rates[age_in_group]->add(surv_rate);
159 if ((size_t)(age_in_group+1) > _summary_surv_rates_max_len)
160 _summary_surv_rates_max_len = age_in_group
[all...]
H A DsurvRateGroup.hpp58 void record_surviving_words(int age_in_group, size_t surv_words);
86 int age_in_group(int age_index) { function in class:SurvRateGroup
H A DheapRegion.hpp670 return _surv_rate_group->age_in_group(_age_index);
676 int age_in_group = age_in_surv_rate_group(); local
677 _surv_rate_group->record_surviving_words(age_in_group, words_survived);

Completed in 64 milliseconds