Searched refs:new_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
460 unsigned int new_duty_cycle) {
462 assert(new_duty_cycle <= 100, "bad input value");
466 unsigned int damped_duty_cycle = new_duty_cycle;
467 if (new_duty_cycle < old_duty_cycle) {
469 if (new_duty_cycle + largest_delta < old_duty_cycle) {
472 } else if (new_duty_cycle > old_duty_cycle) {
474 if (new_duty_cycle > old_duty_cycle + largest_delta) {
482 old_duty_cycle, new_duty_cycle, damped_duty_cycle);
499 unsigned int new_duty_cycle local
459 icms_damped_duty_cycle(unsigned int old_duty_cycle, unsigned int new_duty_cycle) argument
[all...]
H A DconcurrentMarkSweepGeneration.hpp387 // of change between old_duty_cycle and new_duty_cycle (the latter is treated
390 unsigned int new_duty_cycle);

Completed in 39 milliseconds