| /openjdk7/hotspot/src/share/vm/gc_implementation/shared/ |
| H A D | cSpaceCounters.hpp | 39 PerfVariable* _capacity; member in class:CSpaceCounters 59 _capacity->set_value(_space->capacity());
|
| H A D | hSpaceCounters.hpp | 44 PerfVariable* _capacity; member in class:HSpaceCounters 62 _capacity->set_value(v);
|
| H A D | gSpaceCounters.hpp | 41 PerfVariable* _capacity; member in class:GSpaceCounters 61 _capacity->set_value(_gen->capacity());
|
| H A D | spaceCounters.hpp | 42 PerfVariable* _capacity; member in class:SpaceCounters 62 _capacity->set_value(_object_space->capacity_in_bytes());
|
| /openjdk7/hotspot/src/share/vm/runtime/ |
| H A D | perfMemory.cpp | 48 size_t PerfMemory::_capacity = 0; member in class:PerfMemory 125 _capacity); 129 _end = _start + _capacity; 198 _capacity = 0;
|
| H A D | perfMemory.hpp | 120 static size_t _capacity; member in class:PerfMemory 137 static size_t capacity() { return _capacity; }
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/ |
| H A D | KeyIntMap.java | 58 int _capacity; field in class:KeyIntMap 92 _capacity = 1; 93 while (_capacity < initialCapacity) 94 _capacity <<= 1; 97 _threshold = (int)(_capacity * _loadFactor); 99 _capacity = DEFAULT_INITIAL_CAPACITY; 110 _capacity = DEFAULT_INITIAL_CAPACITY;
|
| /openjdk7/hotspot/src/share/vm/memory/ |
| H A D | filemap.hpp | 70 size_t _capacity; // for validity checking member in struct:FileMapInfo::FileMapHeader::space_info 110 size_t space_capacity(int i) { return _header._space[i]._capacity; }
|
| /openjdk7/hotspot/src/share/vm/gc_implementation/g1/ |
| H A D | sparsePRT.hpp | 112 size_t _capacity; member in class:RSHashTable 165 size_t capacity() const { return _capacity; } 178 int _tbl_ind; // [-1, 0.._rsht->_capacity) 179 int _bl_ind; // [-1, 0.._rsht->_capacity)
|
| H A D | concurrentMark.hpp | 164 jint _capacity; // max #elements member in class:VALUE_OBJ_CLASS_SPEC 233 bool isFull() { return _index == _capacity; } 234 int maxElems() { return _capacity; }
|
| H A D | concurrentMark.cpp | 175 _capacity = (jint) size; 216 if (next_index > _capacity) { 224 assert(ind < _capacity, "By overflow test above."); argument 239 if (next_index > _capacity) { 247 assert(ind < _capacity, "By overflow test above.");
|
| /openjdk7/hotspot/agent/src/os/bsd/ |
| H A D | ps_core.c | 227 size_t _capacity; // for validity checking member in struct:FileMapHeader::space_info
|
| /openjdk7/hotspot/agent/src/os/linux/ |
| H A D | ps_core.c | 226 size_t _capacity; // for validity checking member in struct:FileMapHeader::space_info
|
| /openjdk7/hotspot/agent/src/os/solaris/proc/ |
| H A D | saproc.cpp | 528 size_t _capacity; // for validity checking member in struct:FileMapHeader::space_info
|
| /openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/ |
| H A D | concurrentMarkSweepGeneration.hpp | 177 size_t _capacity; // max #elements member in class:CMSMarkStack 193 size_t capacity() const { return _capacity; } 214 assert(_index <= _capacity, "buffer overflow"); 215 return _index == _capacity; 275 size_t _capacity; member in class:ChunkArray 280 ChunkArray() : _index(0), _capacity(0), _overflows(0), _array(NULL) {} 282 _index(0), _capacity(c), _overflows(0), _array(a) {} 287 size_t capacity() { return _capacity; } 288 void set_capacity(size_t c) { _capacity = c; } 292 err_msg("_index (" SIZE_FORMAT ") > _capacity (" SIZE_FORMA [all...] |