Home
last modified time | relevance | path

Searched refs:PyTuple_GetItem (Results 1 – 25 of 55) sorted by relevance

123

/external/python/cpython2/Modules/
Dcgensupport.c23 args = PyTuple_GetItem(args, i); in PyArg_GetObject()
42 args = PyTuple_GetItem(args, i); in PyArg_GetLong()
183 w = PyTuple_GetItem(v, i); in PyArg_GetLongArray()
220 w = PyTuple_GetItem(v, i); in PyArg_GetShortArray()
257 w = PyTuple_GetItem(v, i); in PyArg_GetDoubleArray()
290 w = PyTuple_GetItem(v, i); in PyArg_GetFloatArray()
Ddlmodule.c90 name = PyTuple_GetItem(args, 0); in dl_call()
109 PyObject *v = PyTuple_GetItem(args, i); in dl_call()
Dzipimport.c1191 time = PyInt_AsLong(PyTuple_GetItem(toc_entry, 5)); in get_mtime_of_source()
1192 date = PyInt_AsLong(PyTuple_GetItem(toc_entry, 6)); in get_mtime_of_source()
1216 modpath = PyString_AsString(PyTuple_GetItem(toc_entry, 0)); in get_code_from_data()
1274 PyTuple_GetItem(toc_entry, 0)); in get_module_code()
D_tkinter.c429 PyObject *v = PyTuple_GetItem(args, i); in Merge()
590 elem = PyTuple_GetItem(arg, i); in SplitObj()
606 elem = PyTuple_GetItem(arg, k); in SplitObj()
1155 argv[i] = AsObj(PyTuple_GetItem(value,i)); in AsObj()
1490 PyObject *v = PyTuple_GetItem(args, i); in Tkapp_CallArgs()
1606 PyObject* item = PyTuple_GetItem(args, 0); in Tkapp_Call()
2109 PyObject* o = PyTuple_GetItem(args, 0); in Tkapp_GetInt()
2156 PyObject *o = PyTuple_GetItem(args, 0); in Tkapp_GetDouble()
Dcstubs114 getitem = PyTuple_GetItem;
217 getitem = PyTuple_GetItem;
230 wnorm = PyTuple_GetItem(w, inorm);
231 wvec = PyTuple_GetItem(w, 1 - inorm);
/external/python/cpython2/Modules/_sqlite/
Drow.c75 PyObject* item = PyTuple_GetItem(self->data, idx); in pysqlite_row_item()
96 item = PyTuple_GetItem(self->data, _idx); in pysqlite_row_subscript()
105 item = PyTuple_GetItem(self->data, _idx); in pysqlite_row_subscript()
137 item = PyTuple_GetItem(self->data, i); in pysqlite_row_subscript()
/external/python/cpython3/Modules/_sqlite/
Drow.c74 PyObject* item = PyTuple_GetItem(self->data, idx); in pysqlite_row_item()
97 item = PyTuple_GetItem(self->data, _idx); in pysqlite_row_subscript()
134 item = PyTuple_GetItem(self->data, i); in pysqlite_row_subscript()
/external/tensorflow/tensorflow/compiler/xla/python/
Dnumpy_bridge.cc252 XlaShapeFromPyShape(PyTuple_GetItem(py_subshapes, i))); in XlaShapeFromPyShape()
280 dimensions[i] = PyIntOrPyLongToLong(PyTuple_GetItem(py_dimensions, i)); in XlaShapeFromPyShape()
287 PyIntOrPyLongToLong(PyTuple_GetItem(py_minor_to_major, i)); in XlaShapeFromPyShape()
404 PyObject* element = PyTuple_GetItem(o, i); in XlaLiteralFromPyObject()
Dxla_data.i401 PyObject* first = PyTuple_GetItem(o, 0);
414 PyObject* second = PyTuple_GetItem(o, 1);
/external/python/cpython2/Include/
Dtupleobject.h42 PyAPI_FUNC(PyObject *) PyTuple_GetItem(PyObject *, Py_ssize_t);
/external/python/cpython2/RISCOS/Modules/
Ddrawfmodule.c194 { dash_pattern->elements[i]=(int)PyInt_AsLong(PyTuple_GetItem(dp,i)); in DrawF_Path()
206 *pe++=PyInt_AsLong(PyTuple_GetItem(p,0)); in DrawF_Path()
207 *pe++=PyInt_AsLong(PyTuple_GetItem(p,1)); in DrawF_Path()
434 par=PyTuple_GetItem(arg,0); in SetWord()
443 { par=PyTuple_GetItem(arg,m); in SetWord()
Dswimodule.c349 name=PyTuple_GetItem(args,0); in swi_swi()
356 format=PyTuple_GetItem(args,1); in swi_swi()
369 v=PyTuple_GetItem(args,j++); in swi_swi()
/external/python/cpython3/Include/
Dtupleobject.h45 PyAPI_FUNC(PyObject *) PyTuple_GetItem(PyObject *, Py_ssize_t);
/external/python/cpython2/Doc/c-api/
Dtuple.rst82 .. c:function:: PyObject* PyTuple_GetItem(PyObject *p, Py_ssize_t pos)
94 Like :c:func:`PyTuple_GetItem`, but does no checking of its arguments.
/external/python/cpython3/Modules/
Dzipimport.c1492 time = PyLong_AsLong(PyTuple_GetItem(toc_entry, 5)); in get_mtime_of_source()
1493 date = PyLong_AsLong(PyTuple_GetItem(toc_entry, 6)); in get_mtime_of_source()
1512 modpath = PyTuple_GetItem(toc_entry, 0); in get_code_from_data()
1581 *p_modpath = PyTuple_GetItem(toc_entry, 0); in get_module_code()
/external/python/cpython3/Doc/c-api/
Dtuple.rst57 .. c:function:: PyObject* PyTuple_GetItem(PyObject *p, Py_ssize_t pos)
65 Like :c:func:`PyTuple_GetItem`, but does no checking of its arguments.
/external/python/cpython2/Objects/
Dclassobject.c217 PyTuple_GetItem(cp->cl_bases, i), name, pclass); in class_lookup()
505 if (PyClass_IsSubclass(PyTuple_GetItem(cp->cl_bases, i), base)) in PyClass_IsSubclass()
1500 v1 = PyTuple_GetItem(coerced, 0); in half_binop()
1501 w = PyTuple_GetItem(coerced, 1); in half_binop()
1591 *pv = PyTuple_GetItem(coerced, 0); in instance_coerce()
1592 *pw = PyTuple_GetItem(coerced, 1); in instance_coerce()
Dstructseq.c267 val = PyTuple_GetItem(tup, i); in structseq_repr()
/external/python/cpython2/PC/os2vacpp/
Dpython.def405 PyTuple_GetItem
/external/python/cpython3/Misc/
Dgdbinit40 set $_name = PyUnicode_AsUTF8(PyTuple_GetItem($_names, $_i))
/external/python/cpython2/Misc/
Dgdbinit40 set $_name = PyString_AsString(PyTuple_GetItem($_names, $_i))
/external/python/cpython2/Python/
Dbltinmodule.c960 func = PyTuple_GetItem(args, 0); in builtin_map()
969 return PySequence_List(PyTuple_GetItem(args, 1)); in builtin_map()
994 curseq = PyTuple_GetItem(args, i+1); in builtin_map()
1685 err = PyFile_WriteObject(PyTuple_GetItem(args, i), file, in builtin_print()
Dceval.c835 #define GETITEM(v, i) PyTuple_GetItem((v), (i)) in PyEval_EvalFrameEx()
1231 PyTuple_GetItem(co->co_varnames, oparg)); in PyEval_EvalFrameEx()
2411 PyTuple_GetItem(co->co_varnames, oparg) in PyEval_EvalFrameEx()
5042 globals = PyTuple_GetItem(prog, 1); in exec_statement()
5044 locals = PyTuple_GetItem(prog, 2); in exec_statement()
5045 prog = PyTuple_GetItem(prog, 0); in exec_statement()
/external/tensorflow/tensorflow/python/lib/core/
Dbfloat16.cc244 PyObject* arg = PyTuple_GetItem(args, 0); in PyBfloat16_New()
/external/python/cpython3/PC/
Dpython3.def585 PyTuple_GetItem=python37.PyTuple_GetItem

123