Home | History | Annotate | Download | only in Objects

Lines Matching refs:nextpool

284     struct pool_header *nextpool;       /* next pool of this size class  */

378 same size class via the pool_header's nextpool and prevpool members.
385 It's not linked to from anything then anymore, and its nextpool and
394 via its nextpool member. The prevpool member has no meaning in this case.
426 poolp entry, the nextpool and prevpool members of a pool_header. The
432 nextpool and prevpool members. The "- 2*sizeof(block *)" gibberish is
433 compensating for that a pool_header's nextpool and prevpool members
442 pointer, then p->nextpool and p->prevpool are both p (meaning that the headed
823 if (pool != pool->nextpool) {
848 next = pool->nextpool;
851 pool->nextpool = next;
881 usable_arenas->freepools = pool->nextpool;
918 pool->nextpool = next;
920 next->nextpool = pool;
1042 next = pool->nextpool;
1045 prev->nextpool = next;
1051 pool->nextpool = ao->freepools;
1202 pool->nextpool = next;
1205 prev->nextpool = pool;
1392 /* Is target in the list? The list is traversed via the nextpool pointers.
1406 list = list->nextpool;