Lines Matching defs:_max
273 // are required, from _cnt to _max-1 are precedence edges.
276 node_idx_t _max; // Actual length of input array.
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;
1305 Node_Array(Arena *a) : _a(a), _max(OptoNodeListSize) {
1312 Node_Array(Node_Array *na) : _a(na->_a), _max(na->_max), _nodes(na->_nodes) {}
1314 { return (i<_max) ? _nodes[i] : (Node*)NULL; }
1315 Node *at( uint i ) const { assert(i<_max,"oob"); return _nodes[i]; }
1318 void map( uint i, Node *n ) { if( i>=_max ) grow(i); _nodes[i] = n; }
1324 uint Size() const { return _max; }
1411 INode *_inode_max; // End of _inodes == _inodes + _max