Home
last modified time | relevance | path

Searched refs:freepools (Results 1 – 2 of 2) 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()
1861 assert(pool_is_in_list(p, arenas[i].freepools)); in _PyObject_DebugMallocStats()
/external/python/cpython3/Objects/
Dobmalloc.c973 struct pool_header* freepools; member
1319 arenaobj->freepools = NULL; in new_arena()
1493 poolp pool = usable_arenas->freepools; in allocate_from_new_pool()
1496 usable_arenas->freepools = pool->nextpool; in allocate_from_new_pool()
1500 assert(usable_arenas->freepools == NULL); in allocate_from_new_pool()
1516 assert(usable_arenas->freepools != NULL || in allocate_from_new_pool()
1525 assert(usable_arenas->freepools == NULL); in allocate_from_new_pool()
1701 pool->nextpool = ao->freepools; in insert_to_freepool()
1702 ao->freepools = pool; in insert_to_freepool()
2667 assert(pool_is_in_list(p, arenas[i].freepools)); in _PyObject_DebugMallocStats()