Lines Matching defs:_cnt
78 uint _cnt;
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;
491 assert( from_idx < _cnt, "oob" );
496 uint Size() const { return _cnt; }