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

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.hpp377 size_t* _surviving_young_words; member in class:G1CollectedHeap
1833 size_t* _surviving_young_words;
1987 return _surviving_young_words;
H A Dg1CollectedHeap.cpp1933 _surviving_young_words(NULL),
3689 assert(_surviving_young_words == NULL, "pre-condition");
3691 _surviving_young_words = NEW_C_HEAP_ARRAY(size_t, (size_t) array_length, mtGC);
3692 if (_surviving_young_words == NULL) {
3696 memset(_surviving_young_words, 0, (size_t) array_length * sizeof(size_t));
3699 assert( _surviving_young_words[i] == 0, "memset above" );
3709 _surviving_young_words[i] += surv_young_words[i];
3715 guarantee( _surviving_young_words != NULL, "pre-condition" );
3716 FREE_C_HEAP_ARRAY(size_t, _surviving_young_words, mtGC);
3717 _surviving_young_words
[all...]

Completed in 47 milliseconds