Searched refs:mutator_speed (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/heap/
H A Dheap.cc1337 double mutator_speed = local
1344 SetOldGenerationAllocationLimit(old_gen_size, gc_speed, mutator_speed);
1347 DampenOldGenerationAllocationLimit(old_gen_size, gc_speed, mutator_speed);
4053 static double ComputeMutatorUtilization(double mutator_speed, double gc_speed) { argument
4056 if (mutator_speed == 0) return kMinMutatorUtilization;
4060 // mutator_time = 1 / mutator_speed
4062 // mutator_utilization = (1 / mutator_speed) /
4063 // (1 / mutator_speed + 1 / gc_speed)
4064 // mutator_utilization = gc_speed / (mutator_speed + gc_speed)
4065 return gc_speed / (mutator_speed
4070 double mutator_speed = static_cast<double>( local
4079 result, mutator_speed, gc_speed); local
4086 double mutator_speed = static_cast<double>( local
4095 result, mutator_speed, gc_speed); local
5096 HeapGrowingFactor(double gc_speed, double mutator_speed) argument
5126 SetOldGenerationAllocationLimit(intptr_t old_gen_size, double gc_speed, double mutator_speed) argument
5172 DampenOldGenerationAllocationLimit(intptr_t old_gen_size, double gc_speed, double mutator_speed) argument
[all...]
H A Dheap.h619 static double HeapGrowingFactor(double gc_speed, double mutator_speed);
1776 double mutator_speed);
1786 double mutator_speed);

Completed in 294 milliseconds