Searched refs:usable_arenas (Results 1 – 4 of 4) sorted by relevance
533 static struct arena_object* usable_arenas = NULL; variable595 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 …]
1192 static struct arena_object* usable_arenas = NULL; variable1284 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 …]
16 Objects/obmalloc.c:usable_arenas static struct arena_object* usable…
1891 Objects/obmalloc.c - usable_arenas variable static struct arena_object* usable_arenas