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

/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp579 _eden_chunk_capacity(0), // -- ditto --
747 _eden_chunk_capacity = (_young_gen->max_capacity()+CMSSamplingGrain)/CMSSamplingGrain;
748 _eden_chunk_array = NEW_C_HEAP_ARRAY(HeapWord*, _eden_chunk_capacity, mtGC);
750 _eden_chunk_capacity = 0;
754 assert(_eden_chunk_array != NULL || _eden_chunk_capacity == 0, "Error");
4527 if (_eden_chunk_index < _eden_chunk_capacity) {
5193 assert(ect <= _collector->_eden_chunk_capacity, "out of bounds");
H A DconcurrentMarkSweepGeneration.hpp757 size_t _eden_chunk_capacity; // ... max entries in array member in class:CMSCollector

Completed in 57 milliseconds