HomeSort by relevance Sort by last modified time
    Searched defs:ob_item (Results 1 - 7 of 7) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
listobject.h 24 /* Vector of pointers to list elements. list[0] is ob_item[0], etc. */
25 PyObject **ob_item; member in struct:__anon83988
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))
tupleobject.h 26 PyObject *ob_item[1]; member in struct:__anon84012
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)
structseq.h 31 PyObject *ob_item[1]; member in struct:__anon84011
36 (((PyStructSequence *)(op))->ob_item[i] = v)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
listobject.h 24 /* Vector of pointers to list elements. list[0] is ob_item[0], etc. */
25 PyObject **ob_item; member in struct:__anon84111
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))
tupleobject.h 26 PyObject *ob_item[1]; member in struct:__anon84135
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)
structseq.h 31 PyObject *ob_item[1]; member in struct:__anon84134
36 (((PyStructSequence *)(op))->ob_item[i] = v)
  /external/chromium_org/third_party/cython/src/Cython/Utility/
arrayarray.h 40 char *ob_item; member in union:arrayobject::__anon16390
89 op->data.ob_item = NULL;
92 op->data.ob_item = PyMem_NEW(char, nbytes);
93 if (op->data.ob_item == NULL) {
108 void *items = (void*) self->data.ob_item;
114 self->data.ob_item = (char*) items;
123 void *items = (void*) self->data.ob_item;
137 self->data.ob_item = (char*) items;

Completed in 2375 milliseconds