Home
last modified time | relevance | path

Searched refs:ob_item (Results 1 – 25 of 43) sorted by relevance

12

/third_party/python/Modules/
Darraymodule.c45 char *ob_item; member
142 self->ob_item != NULL) { in array_resize()
148 PyMem_Free(self->ob_item); in array_resize()
149 self->ob_item = NULL; in array_resize()
168 items = self->ob_item; in array_resize()
179 self->ob_item = items; in array_resize()
200 long x = ((signed char *)ap->ob_item)[i]; in b_getitem()
224 ((char *)ap->ob_item)[i] = (char)x; in b_setitem()
231 long x = ((unsigned char *)ap->ob_item)[i]; in BB_getitem()
243 ((char *)ap->ob_item)[i] = x; in BB_setitem()
[all …]
/third_party/python/Objects/
Dtupleobject.c81 state->free_list[size] = (PyTupleObject *) op->ob_item[0]; in tuple_alloc()
162 op->ob_item[i] = NULL; in PyTuple_New()
190 return ((PyTupleObject *)op) -> ob_item[i]; in PyTuple_GetItem()
208 p = ((PyTupleObject *)op) -> ob_item + i; in PyTuple_SetItem()
253 items = result->ob_item; in PyTuple_Pack()
276 Py_XDECREF(op->ob_item[i]); in tupledealloc()
288 op->ob_item[0] = (PyObject *) state->free_list[len]; in tupledealloc()
345 s = PyObject_Repr(v->ob_item[i]); in tuplerepr()
409 PyObject **item = v->ob_item; in tuplehash()
455 Py_INCREF(a->ob_item[i]); in tupleitem()
[all …]
Dlistobject.c56 assert(self->ob_item != NULL || newsize == 0); in list_resize()
81 items = (PyObject **)PyMem_Realloc(self->ob_item, num_allocated_bytes); in list_resize()
86 self->ob_item = items; in list_resize()
95 assert(self->ob_item == NULL); in list_preallocate_exact()
103 self->ob_item = items; in list_preallocate_exact()
165 op->ob_item = NULL; in PyList_New()
168 op->ob_item = (PyObject **) PyMem_Calloc(size, sizeof(PyObject *)); in PyList_New()
169 if (op->ob_item == NULL) { in PyList_New()
188 assert(op->ob_item == NULL); in list_new_prealloc()
189 op->ob_item = PyMem_New(PyObject *, size); in list_new_prealloc()
[all …]
Dstructseq.c74 obj->ob_item[i] = NULL; in PyStructSequence_New()
101 Py_VISIT(obj->ob_item[i]); in structseq_traverse()
116 Py_XDECREF(obj->ob_item[i]); in structseq_dealloc()
209 res->ob_item[i] = v; in structseq_new_impl()
228 res->ob_item[i] = ob; in structseq_new_impl()
338 tup = _PyTuple_FromArray(self->ob_item, n_visible_fields); in structseq_reduce()
348 if (PyDict_SetItemString(dict, n, self->ob_item[i]) < 0) in structseq_reduce()
454 members[k].offset = offsetof(PyStructSequence, ob_item) in initialize_members()
/third_party/python/Include/cpython/
Dtupleobject.h10 PyObject *ob_item[1]; member
23 #define PyTuple_GET_ITEM(op, i) (_PyTuple_CAST(op)->ob_item[i])
26 #define PyTuple_SET_ITEM(op, i, v) ((void)(_PyTuple_CAST(op)->ob_item[i] = v))
Dlistobject.h8 PyObject **ob_item; member
32 #define PyList_GET_ITEM(op, i) (_PyList_CAST(op)->ob_item[i])
33 #define PyList_SET_ITEM(op, i, v) ((void)(_PyList_CAST(op)->ob_item[i] = (v)))
/third_party/python/Modules/clinic/
Ditertoolsmodule.c.h65 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 2… in itertools_groupby()
380 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 2, 2… in itertools_combinations()
428 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 2, 2… in itertools_combinations_with_replacement()
476 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 2… in itertools_permutations()
516 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 2… in itertools_accumulate()
566 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 2, 2… in itertools_compress()
641 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 2… in itertools_count()
D_datetimemodule.c.h34 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 3, 3… in iso_calendar_date_new()
D_pickle.c.h120 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 4… in _pickle_Pickler___init__()
341 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 1… in _pickle_Unpickler___init__()
D_lzmamodule.c.h184 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 3… in _lzma_LZMADecompressor___init__()
/third_party/python/Objects/clinic/
Ddescrobject.c.h19 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 1… in mappingproxy_new()
86 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 4… in property_init()
Dstructseq.c.h21 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 2… in structseq_new()
Dmoduleobject.c.h29 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 2… in module___init__()
Denumobject.c.h36 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 2… in enum_new()
Dfuncobject.c.h42 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 2, 5… in func_new()
Dcomplexobject.c.h96 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 2… in complex_new()
/third_party/python/Include/internal/
Dpycore_list.h14 #define _PyList_ITEMS(op) (_PyList_CAST(op)->ob_item)
Dpycore_tuple.h13 #define _PyTuple_ITEMS(op) (_PyTuple_CAST(op)->ob_item)
/third_party/python/Modules/_io/clinic/
Dbufferedio.c.h414 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 2… in _io_BufferedReader___init__()
468 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 2… in _io_BufferedWriter___init__()
614 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 2… in _io_BufferedRandom___init__()
Dtextio.c.h37 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 2, 3… in _io_IncrementalNewlineDecoder___init__()
198 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 6… in _io_TextIOWrapper___init__()
/third_party/python/Python/clinic/
Dtraceback.c.h29 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 4, 4… in tb_new()
/third_party/python/Include/
Dabstract.h730 (PyList_Check(sf) ? ((PyListObject *)(sf))->ob_item \
731 : ((PyTupleObject *)(sf))->ob_item)
/third_party/python/Modules/_sha3/clinic/
Dsha3module.c.h27 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 1… in py_sha3_new()
/third_party/python/Modules/_blake2/clinic/
Dblake2b_impl.c.h45 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 1… in py_blake2b_new()
Dblake2s_impl.c.h45 …fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 1… in py_blake2s_new()

12