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.c971 struct pool_header* freepools; member
1300 arenaobj->freepools = NULL; in new_arena()
1522 pool = usable_arenas->freepools; in pymalloc_alloc()
1525 usable_arenas->freepools = pool->nextpool; in pymalloc_alloc()
1529 assert(usable_arenas->freepools == NULL); in pymalloc_alloc()
1545 assert(usable_arenas->freepools != NULL || in pymalloc_alloc()
1586 assert(usable_arenas->freepools == NULL); in pymalloc_alloc()
1736 pool->nextpool = ao->freepools; in pymalloc_free()
1737 ao->freepools = pool; in pymalloc_free()
2650 assert(pool_is_in_list(p, arenas[i].freepools)); in _PyObject_DebugMallocStats()