Lines Matching defs:_max
56 uint _cnt, _max; // Size of 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 * 4);
242 b->_max <<= 1; // Double bucket