Searched defs:ob_item (Results 1 - 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A Dlistobject.h24 /* Vector of pointers to list elements. list[0] is ob_item[0], etc. */
25 PyObject **ob_item; member in struct:__anon2693
27 /* ob_item contains space for 'allocated' elements. The number
32 * ob_item == NULL implies ob_size == allocated == 0
61 #define PyList_GET_ITEM(op, i) (((PyListObject *)(op))->ob_item[i])
62 #define PyList_SET_ITEM(op, i, v) (((PyListObject *)(op))->ob_item[i] = (v))
H A Dtupleobject.h26 PyObject *ob_item[1]; member in struct:__anon2717
28 /* ob_item contains space for 'ob_size' elements.
50 #define PyTuple_GET_ITEM(op, i) (((PyTupleObject *)(op))->ob_item[i])
54 #define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = v)
H A Dstructseq.h31 PyObject *ob_item[1]; member in struct:__anon2716
36 (((PyStructSequence *)(op))->ob_item[i] = v)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dlistobject.h24 /* Vector of pointers to list elements. list[0] is ob_item[0], etc. */
25 PyObject **ob_item; member in struct:__anon3000
27 /* ob_item contains space for 'allocated' elements. The number
32 * ob_item == NULL implies ob_size == allocated == 0
61 #define PyList_GET_ITEM(op, i) (((PyListObject *)(op))->ob_item[i])
62 #define PyList_SET_ITEM(op, i, v) (((PyListObject *)(op))->ob_item[i] = (v))
H A Dtupleobject.h26 PyObject *ob_item[1]; member in struct:__anon3023
28 /* ob_item contains space for 'ob_size' elements.
50 #define PyTuple_GET_ITEM(op, i) (((PyTupleObject *)(op))->ob_item[i])
54 #define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = v)
H A Dstructseq.h31 PyObject *ob_item[1]; member in struct:__anon3022
36 (((PyStructSequence *)(op))->ob_item[i] = v)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Darraymodule.c33 char *ob_item; member in struct:arrayobject
57 self->ob_item != NULL) {
75 items = self->ob_item;
86 self->ob_item = items;
107 return PyString_FromStringAndSize(&((char *)ap->ob_item)[i], 1);
117 ((char *)ap->ob_item)[i] = x;
124 long x = ((char *)ap->ob_item)[i];
150 ((char *)ap->ob_item)[i] = (char)x;
157 long x = ((unsigned char *)ap->ob_item)[i];
169 ((char *)ap->ob_item)[
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Darraymodule.c33 char *ob_item; member in struct:arrayobject
57 self->ob_item != NULL) {
75 items = self->ob_item;
86 self->ob_item = items;
107 return PyString_FromStringAndSize(&((char *)ap->ob_item)[i], 1);
117 ((char *)ap->ob_item)[i] = x;
124 long x = ((char *)ap->ob_item)[i];
150 ((char *)ap->ob_item)[i] = (char)x;
157 long x = ((unsigned char *)ap->ob_item)[i];
169 ((char *)ap->ob_item)[
[all...]

Completed in 134 milliseconds