Lines Matching defs:maxarenas
1198 `arenas` is a vector of arena_objects. It contains maxarenas entries, some of
1245 static uint maxarenas = 0;
1281 for (uint i = 0; i < maxarenas; ++i) {
1602 numarenas = maxarenas ? maxarenas << 1 : INITIAL_ARENA_OBJECTS;
1603 if (numarenas <= maxarenas)
1625 for (i = maxarenas; i < numarenas; ++i) {
1632 unused_arena_objects = &arenas[maxarenas];
1633 maxarenas = numarenas;
1715 case. We're relying on that maxarenas is also 0 in that case, so that
1716 (POOL)->arenaindex < maxarenas must be false, saving us from trying to index
1730 is >= maxarenas, the macro correctly concludes at once that obmalloc doesn't
1778 return arenaindex < maxarenas &&
3001 for (i = 0; i < maxarenas; ++i) {