Searched defs:_cnt (Results 1 - 11 of 11) sorted by relevance

/openjdk7/hotspot/src/share/vm/libadt/
H A Ddict.hpp50 uint32 _cnt; // Number of key-value pairs in hash table member in class:Dict
70 uint32 Size(void) const { return _cnt; }
H A Ddict.cpp56 uint _cnt, _max; // Size of bucket member in class:bucket
83 _cnt = 0; // Dictionary is empty
104 _cnt = 0; // Dictionary is empty
113 tty->print("~Dict %d/%d: ",_cnt,_size);
115 tty->print("%d ",_bin[i]._cnt);
125 _cnt = 0; // Empty contents
127 _bin[i]._cnt = 0; // Empty buckets, but leave allocated
150 while( j > b->_cnt ) j >>= 1; // above old bucket _cnt
157 for( j=0; j<b->_cnt;
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Ddict2.hpp49 int _cnt; // Number of key-value pairs in hash table member in class:Dict
70 int Size(void) const { return _cnt; }
H A Ddict2.cpp42 int _cnt, _max; // Size of bucket member in class:bucket
76 _cnt = 0; // Dictionary is empty
89 _cnt = 0; // Empty contents
91 _bin[i]._cnt = 0; // Empty buckets, but leave allocated
114 while( j > b->_cnt ) j >>= 1; // above old bucket _cnt
121 for( j=0; j<b->_cnt; j++ ) { // Rehash all keys in this bucket
126 nb->_cnt = nbcnt = nbcnt+1;
127 b->_cnt--; // Remove key/value from lo bucket
128 b->_keyvals[j+j ] = b->_keyvals[b->_cnt
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dchaitin.hpp195 uint _cnt, _max; member in class:LRG_List
207 assert( nidx < _cnt, "oob" );
212 uint Size() const { return _cnt; }
H A Dblock.hpp78 uint _cnt; member in class:Block_List
79 Block_List() : Block_Array(Thread::current()->resource_area()), _cnt(0) {}
80 void push( Block *b ) { map(_cnt++,b); }
81 Block *pop() { return _blocks[--_cnt]; }
82 Block *rpop() { Block *b = _blocks[0]; _blocks[0]=_blocks[--_cnt]; return b;}
85 uint size() const { return _cnt; }
86 void reset() { _cnt = 0; }
478 uint _cnt, _max; member in class:UnionFind
491 assert( from_idx < _cnt, "oob" );
496 uint Size() const { return _cnt; }
[all...]
H A Dtype.hpp512 TypeTuple( uint cnt, const Type **fields ) : Type(Tuple), _cnt(cnt), _fields(fields) { }
520 const uint _cnt; // Count of fields member in class:TypeTuple
524 uint cnt() const { return _cnt; }
526 assert(i < _cnt, "oob");
530 assert(i < _cnt, "oob");
H A Dcallnode.hpp520 float _cnt; // Estimate of number of times called member in class:CallNode
527 _cnt(COUNT_UNKNOWN),
535 const float cnt() const { return _cnt; }
540 void set_cnt(float c) { _cnt = c; }
H A Dmachnode.hpp714 float _cnt; // Estimate of number of times called member in class:MachCallNode
719 const float cnt() const { return _cnt; }
724 void set_cnt(float c) { _cnt = c; }
H A Dmemnode.hpp1137 int _cnt; member in class:MergeMemStream
1161 _cnt = mm->req();
1183 assert(!_mem || _idx >= _cnt || match_memory(_mem, _mm, _idx),
1295 if (++_idx < _cnt) {
H A Dnode.hpp272 // duplicated; they have no embedded NULLs. Edges from 0 to _cnt-1
273 // are required, from _cnt to _max-1 are precedence edges.
274 node_idx_t _cnt; // Total number of required Node inputs. member in class:Node
299 uint req() const { return _cnt; }
387 assert( i < _cnt, err_msg_res("oob: i=%d, _cnt=%d", i, _cnt));
399 assert( i < _cnt, "oob");
471 assert( i >= _cnt, "not a precedence edge");
1330 uint _cnt; member in class:Node_List
[all...]

Completed in 3045 milliseconds