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.c932 struct pool_header* freepools; member
1255 arenaobj->freepools = NULL; in new_arena()
1461 pool = usable_arenas->freepools; in pymalloc_alloc()
1464 usable_arenas->freepools = pool->nextpool; in pymalloc_alloc()
1476 assert(usable_arenas->freepools == NULL); in pymalloc_alloc()
1493 assert(usable_arenas->freepools != NULL || in pymalloc_alloc()
1534 assert(usable_arenas->freepools == NULL); in pymalloc_alloc()
1690 pool->nextpool = ao->freepools; in pymalloc_free()
1691 ao->freepools = pool; in pymalloc_free()
2582 assert(pool_is_in_list(p, arenas[i].freepools)); in _PyObject_DebugMallocStats()