Searched refs:_threshold (Results 1 - 13 of 13) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DallocationStats.cpp33 float AllocationStats::_threshold = ((float)CMS_SweepTimerThresholdMillis)/1000; member in class:AllocationStats
H A DallocationStats.hpp37 static float _threshold; member in class:VALUE_OBJ_CLASS_SPEC
105 if (inter_sweep_current > _threshold) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DKeyIntMap.java63 int _threshold; field in class:KeyIntMap
97 _threshold = (int)(_capacity * _loadFactor);
101 _threshold = (int)(DEFAULT_INITIAL_CAPACITY * DEFAULT_LOAD_FACTOR);
112 _threshold = (int)(DEFAULT_INITIAL_CAPACITY * DEFAULT_LOAD_FACTOR);
H A DFixedEntryStringIntMap.java43 if (_size++ >= _threshold) {
H A DCharArrayIntMap.java191 if (_size++ >= _threshold) {
201 _threshold = Integer.MAX_VALUE;
208 _threshold = (int)(_capacity * _loadFactor);
H A DLocalNameQualifiedNamesMap.java185 if (_size++ >= _threshold) {
197 _threshold = Integer.MAX_VALUE;
204 _threshold = (int)(_capacity * _loadFactor);
H A DStringIntMap.java175 if (_size++ >= _threshold) {
185 _threshold = Integer.MAX_VALUE;
192 _threshold = (int)(_capacity * _loadFactor);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentG1RefineThread.hpp54 int _threshold; member in class:ConcurrentG1RefineThread
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());
139 _worker_id, _threshold, (int)dcqs.completed_buffers_num());
204 if (_next != NULL && !_next->is_active() && curr_buffer_num > _next->_threshold) {
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepThread.hpp270 const intx _threshold; member in class:CMSLoopCountWarn
276 _src(src), _msg(msg), _threshold(threshold), _ticks(0) { }
280 if (CMSLoopWarn && _ticks % _threshold == 0) {
H A DconcurrentMarkSweepGeneration.cpp7158 _threshold = _finger;
7168 _threshold = (HeapWord*)round_to(
7192 // the _threshold so that we'll come back to scan this object
7200 // Bump _threshold to end_card_addr; note that
7201 // _threshold cannot possibly exceed end_card_addr, anyhow.
7204 assert(_threshold <= end_card_addr,
7206 if (_threshold < end_card_addr) {
7207 _threshold = end_card_addr;
7283 if (CMSCleanOnEnter && (_finger > _threshold)) {
7284 // [_threshold, _finge
[all...]
H A DconcurrentMarkSweepGeneration.hpp1390 HeapWord* _threshold; member in class:MarkFromRootsClosure
1425 HeapWord* _threshold; member in class:Par_MarkFromRootsClosure
/openjdk7/hotspot/src/share/vm/memory/
H A Dspace.hpp384 HeapWord* _threshold) :
385 gen(_gen), space(_space), threshold(_threshold) {}
383 CompactPoint(Generation* _gen, CompactibleSpace* _space, HeapWord* _threshold) argument

Completed in 783 milliseconds