Searched defs:_max (Results 1 - 13 of 13) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A DintHisto.hpp52 int _max; member in class:IntHistogram
H A DgrowableArray.hpp84 int _max; // maximum length member in class:GenericGrowableArray
110 _max = initial_size;
116 assert(_len >= 0 && _len <= _max, "initial_len too big");
129 _max = initial_size;
130 assert(_len >= 0 && _len <= _max, "initial_len too big");
146 return (void*)resource_allocate_bytes(thread, elementSize * _max);
162 for (int i = 0; i < _max; i++) ::new ((void*)&_data[i]) E();
168 for (int i = 0; i < _max; i++) ::new ((void*)&_data[i]) E();
176 for (; i < _max; i++) ::new ((void*)&_data[i]) E();
183 for (; i < _max;
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DresourceArea.hpp95 char *_hwm, *_max; member in class:ResourceMark
102 _max= _area->_max;
121 _area(r), _chunk(r->_chunk), _hwm(r->_hwm), _max(r->_max) {
141 _area->_max = _max;
144 if (ZapResourceArea) memset(_hwm, badResourceValue, _max - _hwm);
192 char *_hwm, *_max; member in class:DeoptResourceMark
199 _max
[all...]
H A Dallocation.hpp291 char *_hwm, *_max; // High water mark and max in current chunk member in class:Arena
339 if (_hwm + x > _max) {
354 if (_hwm + x > _max) {
376 if (_hwm + x > _max) {
422 _hwm = _max = NULL;
/openjdk7/hotspot/src/share/vm/adlc/
H A Darena.hpp102 char *_hwm, *_max; // High water mark and max in current chunk member in class:Arena
119 if (_hwm + x > _max) {
131 if (_hwm + x > _max) {
H A Ddict2.cpp42 int _cnt, _max; // Size of bucket member in class:bucket
113 int j = b->_max; // Trim new bucket to nearest power of 2
116 nb->_max = j<<1;
118 nb->_keyvals = (const void**)_arena->Amalloc_4( sizeof(void *)*nb->_max*2 );
145 _bin[i]._keyvals=(const void**)_arena->Amalloc_4( sizeof(void *)*_bin[i]._max*2);
195 if( b->_cnt == b->_max ) { // Must grow bucket?
197 b->_max = 2; // Initial bucket size
198 b->_keyvals = (const void**)_arena->Amalloc_4( sizeof(void *)*b->_max*2 );
200 b->_keyvals = (const void**)_arena->Arealloc( b->_keyvals, sizeof(void *)*b->_max*2, sizeof(void *)*b->_max*
[all...]
H A Dforms.hpp326 int _max; // Number of spaces allocated member in class:NameList
/openjdk7/hotspot/src/share/vm/libadt/
H A Ddict.cpp56 uint _cnt, _max; // Size of bucket member in class:bucket
149 uint j = b->_max; // Trim new bucket to nearest power of 2
152 nb->_max = j<<1;
154 nb->_keyvals = (void**)_arena->Amalloc_4( sizeof(void *)*nb->_max*2 );
181 _bin[i]._keyvals=(void**)_arena->Amalloc_4( sizeof(void *)*_bin[i]._max*2);
236 if( b->_cnt == b->_max ) { // Must grow bucket?
238 b->_max = 2; // Initial bucket size
239 b->_keyvals = (void**)_arena->Amalloc_4(sizeof(void*) * b->_max * 2);
241 b->_keyvals = (void**)_arena->Arealloc(b->_keyvals, sizeof(void*) * b->_max * 2, sizeof(void*) * b->_max *
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dhandles.hpp313 char *_hwm, *_max; // saved arena info member in class:HandleMark
/openjdk7/hotspot/src/share/vm/opto/
H A Dchaitin.hpp195 uint _cnt, _max; member in class:LRG_List
H A DphaseX.hpp56 uint _max; // Size of table (power of 2) member in class:NodeHash
78 assert( _inserts < _max, "hash table overflow" );
82 // Return 75% of _max, rounded up.
83 uint insert_limit() const { return _max - (_max>>2); }
87 uint size() const { return _max; }
90 assert(table_index < _max, "Must be within table");
124 uint _max;
128 { return (i<_max) ? _types[i] : (Type*)NULL; }
131 Type_Array(Arena *a) : _a(a), _max(
[all...]
H A Dblock.hpp478 uint _cnt, _max; member in class:UnionFind
H A Dnode.hpp273 // are required, from _cnt to _max-1 are precedence edges.
276 node_idx_t _max; // Actual length of input array. member in class:Node
300 uint len() const { return _max; }
354 Node* in(uint i) const { assert(i < _max, err_msg_res("oob: i=%d, _max=%d", i, _max)); return _in[i]; }
1301 uint _max; member in class:Node_Array
1305 Node_Array(Arena *a) : _a(a), _max(OptoNodeListSize) {
1312 Node_Array(Node_Array *na) : _a(na->_a), _max(na->_max), _node
[all...]

Completed in 55 milliseconds