/external/python/cpython2/Modules/ |
D | termios.c | 166 mode.c_iflag = (tcflag_t) PyInt_AsLong(PyList_GetItem(term, 0)); in termios_tcsetattr() 167 mode.c_oflag = (tcflag_t) PyInt_AsLong(PyList_GetItem(term, 1)); in termios_tcsetattr() 168 mode.c_cflag = (tcflag_t) PyInt_AsLong(PyList_GetItem(term, 2)); in termios_tcsetattr() 169 mode.c_lflag = (tcflag_t) PyInt_AsLong(PyList_GetItem(term, 3)); in termios_tcsetattr() 170 ispeed = (speed_t) PyInt_AsLong(PyList_GetItem(term, 4)); in termios_tcsetattr() 171 ospeed = (speed_t) PyInt_AsLong(PyList_GetItem(term, 5)); in termios_tcsetattr() 172 cc = PyList_GetItem(term, 6); in termios_tcsetattr() 184 v = PyList_GetItem(cc, i); in termios_tcsetattr()
|
D | cgensupport.c | 196 w = PyList_GetItem(v, i); in PyArg_GetLongArray() 233 w = PyList_GetItem(v, i); in PyArg_GetShortArray() 268 w = PyList_GetItem(v, i); in PyArg_GetDoubleArray() 301 w = PyList_GetItem(v, i); in PyArg_GetFloatArray()
|
D | xxmodule.c | 188 item = PyList_GetItem(list, 0); in xx_bug()
|
D | syslogmodule.c | 89 scriptobj = PyList_GetItem(argv, 0); in syslog_get_argv()
|
D | cstubs | 110 getitem = PyList_GetItem; 213 getitem = PyList_GetItem; 310 w = PyList_GetItem(v, s); 317 pt = PyList_GetItem(w, t); 385 if (!PyArg_GetDoubleArray(PyList_GetItem(v, i), 1, 0, ncoords, pnext)) 432 if (!PyArg_GetDoubleArray(PyList_GetItem(v, i), 1, 0, ncoords, pnext)) 597 PyList_SetItem(PyList_GetItem(v, i), j, w);
|
D | posixmodule.c | 3174 getitem = PyList_GetItem; in posix_execv() 3250 getitem = PyList_GetItem; in posix_execve() 3308 key = PyList_GetItem(keys, pos); in posix_execve() 3309 val = PyList_GetItem(vals, pos); in posix_execve() 3399 getitem = PyList_GetItem; in posix_spawnv() 3491 getitem = PyList_GetItem; in posix_spawnve() 3549 key = PyList_GetItem(keys, pos); in posix_spawnve() 3550 val = PyList_GetItem(vals, pos); in posix_spawnve() 3647 getitem = PyList_GetItem; in posix_spawnvp() 3730 getitem = PyList_GetItem; in posix_spawnvpe() [all …]
|
/external/python/cpython3/Modules/ |
D | termios.c | 165 mode.c_iflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 0)); in termios_tcsetattr() 166 mode.c_oflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 1)); in termios_tcsetattr() 167 mode.c_cflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 2)); in termios_tcsetattr() 168 mode.c_lflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 3)); in termios_tcsetattr() 169 ispeed = (speed_t) PyLong_AsLong(PyList_GetItem(term, 4)); in termios_tcsetattr() 170 ospeed = (speed_t) PyLong_AsLong(PyList_GetItem(term, 5)); in termios_tcsetattr() 171 cc = PyList_GetItem(term, 6); in termios_tcsetattr() 183 v = PyList_GetItem(cc, i); in termios_tcsetattr()
|
D | xxmodule.c | 188 item = PyList_GetItem(list, 0); in xx_bug()
|
D | syslogmodule.c | 89 scriptobj = PyList_GetItem(argv, 0); in syslog_get_argv()
|
/external/tensorflow/tensorflow/python/client/ |
D | tf_session.i | 40 PyObject* item = PyList_GetItem(py_tensor_list, i); in PyTensorListToVector() 270 PyObject* elem = PyList_GetItem($input, i); 595 PyObject* item = PyList_GetItem($input, i); 616 PyObject* item = PyList_GetItem($input, i);
|
D | tf_sessionrun_wrapper.i | 64 PyObject* item = PyList_GetItem($input, i);
|
/external/python/cpython2/Include/ |
D | listobject.h | 49 PyAPI_FUNC(PyObject *) PyList_GetItem(PyObject *, Py_ssize_t);
|
/external/python/cpython3/Include/ |
D | listobject.h | 54 PyAPI_FUNC(PyObject *) PyList_GetItem(PyObject *, Py_ssize_t);
|
/external/libnl/python/netlink/genl/ |
D | capi.i | 81 pobj = PyList_GetItem(p, 0); in py_genlmsg_parse()
|
/external/python/cpython3/Doc/c-api/ |
D | list.rst | 59 .. c:function:: PyObject* PyList_GetItem(PyObject *list, Py_ssize_t index) 69 Macro form of :c:func:`PyList_GetItem` without error checking.
|
/external/python/cpython2/Python/ |
D | dynload_beos.c | 84 the_item = PyList_GetItem( id_list, idx ); in beos_cleanup_dyn()
|
D | traceback.c | 146 PyObject *v = PyList_GetItem(path, i); in _Py_DisplaySourceLine()
|
/external/python/cpython2/Doc/c-api/ |
D | list.rst | 76 .. c:function:: PyObject* PyList_GetItem(PyObject *list, Py_ssize_t index) 90 Macro form of :c:func:`PyList_GetItem` without error checking.
|
/external/python/cpython2/Modules/_sqlite/ |
D | connection.c | 246 weakref = PyList_GetItem(self->statements, i); in pysqlite_do_all_statements() 259 weakref = PyList_GetItem(self->cursors, i); in pysqlite_do_all_statements() 818 weakref = PyList_GetItem(self->statements, i); in _pysqlite_drop_unused_statement_references() 849 weakref = PyList_GetItem(self->cursors, i); in _pysqlite_drop_unused_cursor_references()
|
/external/tensorflow/tensorflow/lite/python/optimize/ |
D | calibration_wrapper.cc | 99 PyObject* input = PyList_GetItem(input_value, i); in FeedTensor()
|
/external/tensorflow/tensorflow/python/lib/core/ |
D | py_func.cc | 256 const PyObject* item = PyList_GetItem(result, i); in DoCallPyFunc() 267 s = ConvertNdarrayToTensor(PyList_GetItem(result, i), &t); in DoCallPyFunc()
|
/external/python/cpython3/Modules/_sqlite/ |
D | connection.c | 222 weakref = PyList_GetItem(self->statements, i); in pysqlite_do_all_statements() 237 weakref = PyList_GetItem(self->cursors, i); in pysqlite_do_all_statements() 768 weakref = PyList_GetItem(self->statements, i); in _pysqlite_drop_unused_statement_references() 799 weakref = PyList_GetItem(self->cursors, i); in _pysqlite_drop_unused_cursor_references()
|
/external/tensorflow/tensorflow/python/framework/ |
D | cpp_shape_inference.cc | 189 PyList_GetItem(input_constant_tensor_values, i)); in RunCppShapeInference()
|
/external/python/cpython2/RISCOS/Modules/ |
D | swimodule.c | 82 { PyObject *q=PyList_GetItem(init,k); in PyBlock_New() 271 { PyObject *q=PyList_GetItem(v,k); in block_ass_slice()
|
/external/tensorflow/tensorflow/python/ |
D | pywrap_tfe.i | 211 PyObject* elem = PyList_GetItem($input, i);
|