Home
last modified time | relevance | path

Searched refs:freepools (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Objects/
Dobmalloc.c315 struct pool_header* freepools; member
639 arenaobj->freepools = NULL; in new_arena()
878 pool = usable_arenas->freepools; in PyObject_Malloc()
881 usable_arenas->freepools = pool->nextpool; in PyObject_Malloc()
893 assert(usable_arenas->freepools == NULL); in PyObject_Malloc()
910 assert(usable_arenas->freepools != NULL || in PyObject_Malloc()
951 assert(usable_arenas->freepools == NULL); in PyObject_Malloc()
1051 pool->nextpool = ao->freepools; in PyObject_Free()
1052 ao->freepools = pool; in PyObject_Free()
1855 assert(pool_is_in_list(p, arenas[i].freepools)); in _PyObject_DebugMallocStats()