Searched refs:_capacity (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DKeyIntMap.java58 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;
H A DCharArrayIntMap.java75 _table = new Entry[_capacity];
197 _capacity = newCapacity;
205 Entry[] newTable = new Entry[_capacity];
208 _threshold = (int)(_capacity * _loadFactor);
H A DLocalNameQualifiedNamesMap.java70 _table = new Entry[_capacity];
193 _capacity = newCapacity;
201 Entry[] newTable = new Entry[_capacity];
204 _threshold = (int)(_capacity * _loadFactor);
H A DStringIntMap.java60 _table = new Entry[_capacity];
181 _capacity = newCapacity;
189 Entry[] newTable = new Entry[_capacity];
192 _threshold = (int)(_capacity * _loadFactor);
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DcSpaceCounters.hpp39 PerfVariable* _capacity; member in class:CSpaceCounters
59 _capacity->set_value(_space->capacity());
H A DgSpaceCounters.hpp41 PerfVariable* _capacity; member in class:GSpaceCounters
61 _capacity->set_value(_gen->capacity());
H A DhSpaceCounters.hpp44 PerfVariable* _capacity; member in class:HSpaceCounters
62 _capacity->set_value(v);
H A DspaceCounters.hpp42 PerfVariable* _capacity; member in class:SpaceCounters
62 _capacity->set_value(_object_space->capacity_in_bytes());
H A DcSpaceCounters.cpp51 _capacity = PerfDataManager::create_variable(SUN_GC, cname,
H A DgSpaceCounters.cpp55 _capacity = PerfDataManager::create_variable(SUN_GC, cname,
H A DhSpaceCounters.cpp54 _capacity = PerfDataManager::create_variable(SUN_GC, cname,
H A DspaceCounters.cpp53 _capacity = PerfDataManager::create_variable(SUN_GC, cname,
/openjdk7/hotspot/src/share/vm/runtime/
H A DperfMemory.hpp120 static size_t _capacity; member in class:PerfMemory
137 static size_t capacity() { return _capacity; }
H A DperfMemory.cpp48 size_t PerfMemory::_capacity = 0; member in class:PerfMemory
125 _capacity);
129 _end = _start + _capacity;
198 _capacity = 0;
/openjdk7/hotspot/src/share/vm/memory/
H A Dfilemap.hpp70 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; }
H A Dfilemap.cpp235 si->_capacity = capacity;
307 si->_capacity != space->capacity()) {
446 SharedReadOnlySize = _header._space[0]._capacity;
447 SharedReadWriteSize = _header._space[1]._capacity;
448 SharedMiscDataSize = _header._space[2]._capacity;
449 SharedMiscCodeSize = _header._space[3]._capacity;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsparsePRT.hpp112 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 DsparsePRT.cpp149 _capacity(capacity), _capacity_mask(capacity-1),
175 guarantee(_capacity <= ((size_t)1 << (sizeof(int)*BitsPerByte-1)) - 1,
176 "_capacity too large");
179 memset(_entries, NullEntry, _capacity * SparsePRTEntry::size());
180 memset(_buckets, NullEntry, _capacity * sizeof(int));
H A DconcurrentMark.hpp164 jint _capacity; // max #elements member in class:VALUE_OBJ_CLASS_SPEC
233 bool isFull() { return _index == _capacity; }
234 int maxElems() { return _capacity; }
H A DconcurrentMark.cpp175 _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/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.hpp177 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...]
/openjdk7/hotspot/src/os/bsd/vm/
H A DperfMemory_bsd.cpp961 if (_start != NULL) _capacity = size;
/openjdk7/hotspot/src/os/linux/vm/
H A DperfMemory_linux.cpp961 if (_start != NULL) _capacity = size;
/openjdk7/hotspot/src/os/solaris/vm/
H A DperfMemory_solaris.cpp976 if (_start != NULL) _capacity = size;
/openjdk7/hotspot/agent/src/os/bsd/
H A Dps_core.c227 size_t _capacity; // for validity checking member in struct:FileMapHeader::space_info

Completed in 1377 milliseconds

12