Lines Matching refs:nextpool
942 struct pool_header *nextpool; /* next pool of this size class */ member
1444 next = pool->nextpool; in pymalloc_pool_extend()
1447 pool->nextpool = next; in pymalloc_pool_extend()
1496 usable_arenas->freepools = pool->nextpool; in allocate_from_new_pool()
1551 pool->nextpool = next; in allocate_from_new_pool()
1553 next->nextpool = pool; in allocate_from_new_pool()
1612 if (LIKELY(pool != pool->nextpool)) { in pymalloc_alloc()
1683 pool->nextpool = next; in insert_to_usedpool()
1686 prev->nextpool = pool; in insert_to_usedpool()
1692 poolp next = pool->nextpool; in insert_to_freepool()
1695 prev->nextpool = next; in insert_to_freepool()
1701 pool->nextpool = ao->freepools; in insert_to_freepool()
2581 list = list->nextpool; in pool_is_in_list()