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

/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp457 // Return a duty cycle based on old_duty_cycle and new_duty_cycle, limiting the
459 unsigned int CMSStats::icms_damped_duty_cycle(unsigned int old_duty_cycle, argument
461 assert(old_duty_cycle <= 100, "bad input value");
467 if (new_duty_cycle < old_duty_cycle) {
468 const unsigned int largest_delta = MAX2(old_duty_cycle / 4, 5U);
469 if (new_duty_cycle + largest_delta < old_duty_cycle) {
470 damped_duty_cycle = old_duty_cycle - largest_delta;
472 } else if (new_duty_cycle > old_duty_cycle) {
473 const unsigned int largest_delta = MAX2(old_duty_cycle / 4, 15U);
474 if (new_duty_cycle > old_duty_cycle
[all...]
H A DconcurrentMarkSweepGeneration.hpp387 // of change between old_duty_cycle and new_duty_cycle (the latter is treated
389 static unsigned int icms_damped_duty_cycle(unsigned int old_duty_cycle,

Completed in 40 milliseconds