Lines Matching refs:nextpool
284 struct pool_header *nextpool; /* next pool of this size class */ member
823 if (pool != pool->nextpool) { in PyObject_Malloc()
848 next = pool->nextpool; in PyObject_Malloc()
851 pool->nextpool = next; in PyObject_Malloc()
881 usable_arenas->freepools = pool->nextpool; in PyObject_Malloc()
918 pool->nextpool = next; in PyObject_Malloc()
920 next->nextpool = pool; in PyObject_Malloc()
1042 next = pool->nextpool; in PyObject_Free()
1045 prev->nextpool = next; in PyObject_Free()
1051 pool->nextpool = ao->freepools; in PyObject_Free()
1202 pool->nextpool = next; in PyObject_Free()
1205 prev->nextpool = pool; in PyObject_Free()
1406 list = list->nextpool; in pool_is_in_list()