Home | History | Annotate | Download | only in Objects

Lines Matching refs:nextpool

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

348 same size class via the pool_header's nextpool and prevpool members.
355 It's not linked to from anything then anymore, and its nextpool and
364 via its nextpool member. The prevpool member has no meaning in this case.
396 poolp entry, the nextpool and prevpool members of a pool_header. The
402 nextpool and prevpool members. The "- 2*sizeof(block *)" gibberish is
403 compensating for that a pool_header's nextpool and prevpool members
412 pointer, then p->nextpool and p->prevpool are both p (meaning that the headed
780 if (pool != pool->nextpool) {
805 next = pool->nextpool;
808 pool->nextpool = next;
838 usable_arenas->freepools = pool->nextpool;
875 pool->nextpool = next;
877 next->nextpool = pool;
998 next = pool->nextpool;
1001 prev->nextpool = next;
1007 pool->nextpool = ao->freepools;
1154 pool->nextpool = next;
1157 prev->nextpool = pool;
1343 /* Is target in the list? The list is traversed via the nextpool pointers.
1357 list = list->nextpool;