Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dobmalloc.c500 static struct arena_object* usable_arenas = NULL; variable
560 assert(usable_arenas == NULL); in new_arena()
816 if (usable_arenas == NULL) { in PyObject_Malloc()
824 usable_arenas = new_arena(); in PyObject_Malloc()
825 if (usable_arenas == NULL) { in PyObject_Malloc()
829 usable_arenas->nextarena = in PyObject_Malloc()
830 usable_arenas->prevarena = NULL; in PyObject_Malloc()
832 assert(usable_arenas->address != 0); in PyObject_Malloc()
835 pool = usable_arenas->freepools; in PyObject_Malloc()
838 usable_arenas->freepools = pool->nextpool; in PyObject_Malloc()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/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 …]