Home
last modified time | relevance | path

Searched refs:max_factor (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/heap/
Dheap-controller.cc51 double max_factor) { in GrowingFactor() argument
52 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() local
98 double factor = GrowingFactor(gc_speed, mutator_speed, max_factor); in CalculateAllocationLimit()
Dheap-controller.h43 double max_factor);