Searched refs:max_gc_time (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1MMUTracker.hpp43 G1MMUTracker(double time_slice, double max_gc_time);
49 double max_gc_time() { function in class:G1MMUTracker
54 return when_sec(current_time, max_gc_time()) < 0.00001;
58 return when_sec(current_time, max_gc_time());
129 G1MMUTrackerQueue(double time_slice, double max_gc_time);
H A Dg1MMUTracker.cpp40 G1MMUTracker::G1MMUTracker(double time_slice, double max_gc_time) : argument
42 _max_gc_time(max_gc_time) { }
44 G1MMUTrackerQueue::G1MMUTrackerQueue(double time_slice, double max_gc_time) : argument
45 G1MMUTracker(time_slice, max_gc_time),
163 (pause_time > max_gc_time()) ? max_gc_time() : pause_time;
167 double diff = gc_time + adjusted_pause_time - max_gc_time();
H A Dg1CollectorPolicy.cpp267 double max_gc_time = (double) MaxGCPauseMillis / 1000.0; local
269 _mmu_tracker = new G1MMUTrackerQueue(time_slice, max_gc_time);
580 double target_pause_time_ms = _mmu_tracker->max_gc_time() * 1000.0;
1141 // Note that _mmu_tracker->max_gc_time() returns the time in seconds.
1142 double update_rs_time_goal_ms = _mmu_tracker->max_gc_time() * MILLIUNITS * G1RSetUpdatingPauseTimePercent / 100.0;
H A Dg1CollectorPolicy.hpp441 return _mmu_tracker->max_gc_time() * 1000.0;

Completed in 31 milliseconds