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

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentG1Refine.cpp42 FLAG_SET_DEFAULT(G1ConcRefinementYellowZone, green_zone() * 3);
44 set_yellow_zone(MAX2<int>(G1ConcRefinementYellowZone, green_zone()));
73 _thread_threshold_step = (yellow_zone() - green_zone()) / (worker_thread_num() + 1);
H A DconcurrentG1Refine.hpp92 int green_zone() const { return _green_zone; } function in class:ConcurrentG1Refine
H A DconcurrentG1RefineThread.cpp64 _threshold = MIN2<int>(cg1r()->thread_threshold_step() * (_worker_id + 1) + cg1r()->green_zone(),
67 _deactivation_threshold = MAX2<int>(_threshold - cg1r()->thread_threshold_step(), cg1r()->green_zone());
207 } while (dcqs.apply_closure_to_completed_buffer(_worker_id + _worker_id_offset, cg1r()->green_zone()));
H A Dg1CollectorPolicy.cpp1211 int g = cg1r->green_zone();
1225 int processing_threshold_delta = MAX2((int)(cg1r->green_zone() * sigma()), 1);
1226 int processing_threshold = MIN2(cg1r->green_zone() + processing_threshold_delta,

Completed in 37 milliseconds