Searched refs:PyList_GET_SIZE (Results 1 - 25 of 51) sorted by relevance

123

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A D_heapqmodule.c43 size = PyList_GET_SIZE(heap);
58 if (size != PyList_GET_SIZE(heap)) {
82 endpos = PyList_GET_SIZE(heap);
103 if (endpos != PyList_GET_SIZE(heap)) {
136 if (_siftdown((PyListObject *)heap, 0, PyList_GET_SIZE(heap)-1) == -1)
157 n = PyList_GET_SIZE(heap);
195 if (PyList_GET_SIZE(heap) < 1) {
234 if (PyList_GET_SIZE(heap) < 1) {
272 n = PyList_GET_SIZE(heap);
322 if (PyList_GET_SIZE(hea
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_heapqmodule.c43 if (pos >= PyList_GET_SIZE(heap)) {
80 endpos = PyList_GET_SIZE(heap);
137 if (_siftdown((PyListObject *)heap, 0, PyList_GET_SIZE(heap)-1) == -1)
158 n = PyList_GET_SIZE(heap);
196 if (PyList_GET_SIZE(heap) < 1) {
235 if (PyList_GET_SIZE(heap) < 1) {
273 n = PyList_GET_SIZE(heap);
323 if (PyList_GET_SIZE(heap) == 0)
382 if (pos >= PyList_GET_SIZE(heap)) {
419 endpos = PyList_GET_SIZE(hea
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A Dlistobject.h63 #define PyList_GET_SIZE(op) Py_SIZE(op) macro
H A Dabstract.h1161 (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dlistobject.h63 #define PyList_GET_SIZE(op) Py_SIZE(op) macro
H A Dabstract.h1161 (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dpyarena.c182 0, PyList_GET_SIZE(arena->a_objects), NULL);
184 assert(PyList_GET_SIZE(arena->a_objects) == 0);
H A Dpeephole.c53 len_consts = PyList_GET_SIZE(consts);
186 len_consts = PyList_GET_SIZE(consts);
239 len_consts = PyList_GET_SIZE(consts);
409 for (j=0 ; j < PyList_GET_SIZE(consts) ; j++) {
413 if (j == PyList_GET_SIZE(consts)) {
H A DPython-ast.c3330 len = PyList_GET_SIZE(tmp);
3366 len = PyList_GET_SIZE(tmp);
3425 len = PyList_GET_SIZE(tmp);
3534 len = PyList_GET_SIZE(tmp);
3559 len = PyList_GET_SIZE(tmp);
3611 len = PyList_GET_SIZE(tmp);
3636 len = PyList_GET_SIZE(tmp);
3661 len = PyList_GET_SIZE(tmp);
3720 len = PyList_GET_SIZE(tmp);
3757 len = PyList_GET_SIZE(tm
[all...]
H A D_warnings.c126 for (i = 0; i < PyList_GET_SIZE(_filters); i++) {
H A Dmarshal.c374 n = PyList_GET_SIZE(v);
839 if (n < 0 || n >= PyList_GET_SIZE(p->strings)) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dpeephole.c53 len_consts = PyList_GET_SIZE(consts);
175 len_consts = PyList_GET_SIZE(consts);
228 len_consts = PyList_GET_SIZE(consts);
400 for (j=0 ; j < PyList_GET_SIZE(consts) ; j++) {
404 if (j == PyList_GET_SIZE(consts)) {
H A DPython-ast.c3347 len = PyList_GET_SIZE(tmp);
3383 len = PyList_GET_SIZE(tmp);
3442 len = PyList_GET_SIZE(tmp);
3551 len = PyList_GET_SIZE(tmp);
3576 len = PyList_GET_SIZE(tmp);
3628 len = PyList_GET_SIZE(tmp);
3653 len = PyList_GET_SIZE(tmp);
3678 len = PyList_GET_SIZE(tmp);
3737 len = PyList_GET_SIZE(tmp);
3774 len = PyList_GET_SIZE(tm
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dlistobject.c268 Py_ssize_t n = PyList_GET_SIZE(self);
399 assert(PyList_GET_SIZE(pieces) > 0);
412 temp = PyList_GET_ITEM(pieces, PyList_GET_SIZE(pieces) - 1);
414 PyList_SET_ITEM(pieces, PyList_GET_SIZE(pieces) - 1, temp);
728 size = PyList_GET_SIZE(self);
2553 i += PyList_GET_SIZE(self);
2605 i += PyList_GET_SIZE(self);
2698 PyList_GET_SIZE(value));
2911 if (it->it_index < PyList_GET_SIZE(seq)) {
2928 len = PyList_GET_SIZE(i
[all...]
H A Dtypeobject.c83 n = PyList_GET_SIZE(raw);
390 n = PyList_GET_SIZE(subclasses);
1379 size = PyList_GET_SIZE(list);
1413 n = PyList_GET_SIZE(list);
1448 to_merge_size = PyList_GET_SIZE(to_merge);
1451 if (remain[i] < PyList_GET_SIZE(L)) {
1484 to_merge_size = PyList_GET_SIZE(to_merge);
1503 if (remain[i] >= PyList_GET_SIZE(cur_list)) {
1529 if (remain[j] < PyList_GET_SIZE(j_lst) &&
2674 n = PyList_GET_SIZE(ra
[all...]
H A Dobject.c1762 for (i = 0; i < PyList_GET_SIZE(list); ++i) {
2392 i = PyList_GET_SIZE(list);
2414 i = PyList_GET_SIZE(list);
H A Ddictobject.c1124 assert(PyList_GET_SIZE(pieces) > 0);
1137 temp = PyList_GET_ITEM(pieces, PyList_GET_SIZE(pieces) - 1);
1139 PyList_SET_ITEM(pieces, PyList_GET_SIZE(pieces) - 1, temp);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dlistobject.c268 Py_ssize_t n = PyList_GET_SIZE(self);
399 assert(PyList_GET_SIZE(pieces) > 0);
412 temp = PyList_GET_ITEM(pieces, PyList_GET_SIZE(pieces) - 1);
414 PyList_SET_ITEM(pieces, PyList_GET_SIZE(pieces) - 1, temp);
728 size = PyList_GET_SIZE(self);
2552 i += PyList_GET_SIZE(self);
2604 i += PyList_GET_SIZE(self);
2697 PyList_GET_SIZE(value));
2910 if (it->it_index < PyList_GET_SIZE(seq)) {
2927 len = PyList_GET_SIZE(i
[all...]
H A Dtypeobject.c83 n = PyList_GET_SIZE(raw);
384 n = PyList_GET_SIZE(subclasses);
1361 size = PyList_GET_SIZE(list);
1395 n = PyList_GET_SIZE(list);
1430 to_merge_size = PyList_GET_SIZE(to_merge);
1433 if (remain[i] < PyList_GET_SIZE(L)) {
1466 to_merge_size = PyList_GET_SIZE(to_merge);
1485 if (remain[i] >= PyList_GET_SIZE(cur_list)) {
1511 if (remain[j] < PyList_GET_SIZE(j_lst) &&
2647 n = PyList_GET_SIZE(ra
[all...]
H A Dobject.c1755 for (i = 0; i < PyList_GET_SIZE(list); ++i) {
2371 i = PyList_GET_SIZE(list);
2393 i = PyList_GET_SIZE(list);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
H A Dstatement.c229 num_params = PyList_GET_SIZE(parameters);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
H A Diobase.c838 if (PyList_GET_SIZE(chunks) == 0) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
H A Diobase.c818 if (PyList_GET_SIZE(chunks) == 0) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
H A Dmarshal.c374 n = PyList_GET_SIZE(v);
839 if (n < 0 || n >= PyList_GET_SIZE(p->strings)) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/
H A Dmarshal.c385 n = PyList_GET_SIZE(v);
844 if (n < 0 || n >= PyList_GET_SIZE(p->strings)) {

Completed in 421 milliseconds

123