Searched refs:max_factor (Results 1 – 2 of 2) sorted by relevance
51 double max_factor) { in GrowingFactor() argument52 DCHECK_LE(kMinGrowingFactor, max_factor); in GrowingFactor()53 DCHECK_GE(kMaxGrowingFactor, max_factor); in GrowingFactor()54 if (gc_speed == 0 || mutator_speed == 0) return max_factor; in GrowingFactor()63 double factor = (a < b * max_factor) ? a / b : max_factor; in GrowingFactor()64 factor = Min(factor, max_factor); in GrowingFactor()97 double max_factor = MaxGrowingFactor(max_size); in CalculateAllocationLimit() local98 double factor = GrowingFactor(gc_speed, mutator_speed, max_factor); in CalculateAllocationLimit()
43 double max_factor);