Searched refs:ao (Results 1 - 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dobmalloc.c1026 struct arena_object* ao; local
1027 uint nf; /* ao->nfreepools */
1050 ao = &arenas[pool->arenaindex];
1051 pool->nextpool = ao->freepools;
1052 ao->freepools = pool;
1053 nf = ++ao->nfreepools;
1067 if (nf == ao->ntotalpools) {
1068 /* Case 1. First unlink ao from usable_arenas.
1070 assert(ao->prevarena == NULL ||
1071 ao
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dobmalloc.c982 struct arena_object* ao; local
983 uint nf; /* ao->nfreepools */
1006 ao = &arenas[pool->arenaindex];
1007 pool->nextpool = ao->freepools;
1008 ao->freepools = pool;
1009 nf = ++ao->nfreepools;
1023 if (nf == ao->ntotalpools) {
1024 /* Case 1. First unlink ao from usable_arenas.
1026 assert(ao->prevarena == NULL ||
1027 ao
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Darraymodule.c2100 static PyObject *array_iter(arrayobject *ao);
2150 arrayobject *ao; member in struct:__anon2751
2159 array_iter(arrayobject *ao) argument
2163 if (!array_Check(ao)) {
2172 Py_INCREF(ao);
2173 it->ao = ao;
2175 it->getitem = ao->ob_descr->getitem;
2184 if (it->index < Py_SIZE(it->ao))
2185 return (*it->getitem)(it->ao, i
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Darraymodule.c2085 static PyObject *array_iter(arrayobject *ao);
2135 arrayobject *ao; member in struct:__anon3081
2144 array_iter(arrayobject *ao) argument
2148 if (!array_Check(ao)) {
2157 Py_INCREF(ao);
2158 it->ao = ao;
2160 it->getitem = ao->ob_descr->getitem;
2169 if (it->index < Py_SIZE(it->ao))
2170 return (*it->getitem)(it->ao, i
[all...]

Completed in 162 milliseconds