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

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSeq.hpp51 // * _max_length (returned by max_length()) is the maximum number of
54 // and maintain that: _length <= _allocated_length <= _max_length
85 uint _max_length; member in class:HeapRegionSeq
96 assert(*length < _max_length, "pre-condition");
127 uint max_length() const { return _max_length; }
H A DheapRegionSeq.cpp87 _max_length = max_length;
109 assert(index < _max_length, "otherwise we cannot expand further");
250 guarantee(_allocated_length <= _max_length,
251 err_msg("invariant: _allocated_length: %u _max_length: %u",
252 _allocated_length, _max_length));
284 for (uint i = _allocated_length; i < _max_length; i += 1) {
/openjdk7/hotspot/src/share/vm/oops/
H A DtypeArrayKlass.hpp36 jint _max_length; // maximum number of elements allowed in an array member in class:typeArrayKlass
39 jint max_length() { return _max_length; }
40 void set_max_length(jint m) { _max_length = m; }
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp406 nonstatic_field(typeArrayKlass, _max_length, int) \

Completed in 5494 milliseconds