Lines Matching refs:nextpool
901 struct pool_header *nextpool; /* next pool of this size class */ member
1409 if (pool != pool->nextpool) { in pymalloc_alloc()
1434 next = pool->nextpool; in pymalloc_alloc()
1437 pool->nextpool = next; in pymalloc_alloc()
1464 usable_arenas->freepools = pool->nextpool; in pymalloc_alloc()
1502 pool->nextpool = next; in pymalloc_alloc()
1504 next->nextpool = pool; in pymalloc_alloc()
1659 pool->nextpool = next; in pymalloc_free()
1662 prev->nextpool = pool; in pymalloc_free()
1681 next = pool->nextpool; in pymalloc_free()
1684 prev->nextpool = next; in pymalloc_free()
1690 pool->nextpool = ao->freepools; in pymalloc_free()
2496 list = list->nextpool; in pool_is_in_list()