Lines Matching refs:nextpool
1005 struct pool_header *nextpool; /* next pool of this size class */
1088 same size class via the pool_header's nextpool and prevpool members.
1095 It's not linked to from anything then anymore, and its nextpool and
1104 via its nextpool member. The prevpool member has no meaning in this case.
1136 poolp entry, the nextpool and prevpool members of a pool_header. The
1142 nextpool and prevpool members. The "- 2*sizeof(block *)" gibberish is
1143 compensating for that a pool_header's nextpool and prevpool members
1152 pointer, then p->nextpool and p->prevpool are both p (meaning that the headed
1802 next = pool->nextpool;
1805 pool->nextpool = next;
1854 usable_arenas->freepools = pool->nextpool;
1909 pool->nextpool = next;
1911 next->nextpool = pool;
1970 if (LIKELY(pool != pool->nextpool)) {
2041 pool->nextpool = next;
2044 prev->nextpool = pool;
2050 poolp next = pool->nextpool;
2053 prev->nextpool = next;
2059 pool->nextpool = ao->freepools;
2930 /* Is target in the list? The list is traversed via the nextpool pointers.
2944 list = list->nextpool;