Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dobmalloc.c533 static struct arena_object* usable_arenas = NULL; variable
595 assert(usable_arenas == NULL); in new_arena()
859 if (usable_arenas == NULL) { in PyObject_Malloc()
867 usable_arenas = new_arena(); in PyObject_Malloc()
868 if (usable_arenas == NULL) { in PyObject_Malloc()
872 usable_arenas->nextarena = in PyObject_Malloc()
873 usable_arenas->prevarena = NULL; in PyObject_Malloc()
875 assert(usable_arenas->address != 0); in PyObject_Malloc()
878 pool = usable_arenas->freepools; in PyObject_Malloc()
881 usable_arenas->freepools = pool->nextpool; in PyObject_Malloc()
[all …]
/external/python/cpython3/Objects/
Dobmalloc.c1192 static struct arena_object* usable_arenas = NULL; variable
1284 assert(usable_arenas == NULL); in new_arena()
1459 if (UNLIKELY(usable_arenas == NULL)) { in allocate_from_new_pool()
1466 usable_arenas = new_arena(); in allocate_from_new_pool()
1467 if (usable_arenas == NULL) { in allocate_from_new_pool()
1470 usable_arenas->nextarena = usable_arenas->prevarena = NULL; in allocate_from_new_pool()
1471 assert(nfp2lasta[usable_arenas->nfreepools] == NULL); in allocate_from_new_pool()
1472 nfp2lasta[usable_arenas->nfreepools] = usable_arenas; in allocate_from_new_pool()
1474 assert(usable_arenas->address != 0); in allocate_from_new_pool()
1481 assert(usable_arenas->nfreepools > 0); in allocate_from_new_pool()
[all …]
/external/python/cpython3/Tools/c-analyzer/
DTODO16 Objects/obmalloc.c:usable_arenas static struct arena_object* usable…
Dknown.tsv1891 Objects/obmalloc.c - usable_arenas variable static struct arena_object* usable_arenas