HomeSort by relevance Sort by last modified time
    Searched refs:PyList_GetItem (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/python/cpython2/Modules/
termios.c 166 mode.c_iflag = (tcflag_t) PyInt_AsLong(PyList_GetItem(term, 0));
167 mode.c_oflag = (tcflag_t) PyInt_AsLong(PyList_GetItem(term, 1));
168 mode.c_cflag = (tcflag_t) PyInt_AsLong(PyList_GetItem(term, 2));
169 mode.c_lflag = (tcflag_t) PyInt_AsLong(PyList_GetItem(term, 3));
170 ispeed = (speed_t) PyInt_AsLong(PyList_GetItem(term, 4));
171 ospeed = (speed_t) PyInt_AsLong(PyList_GetItem(term, 5));
172 cc = PyList_GetItem(term, 6);
184 v = PyList_GetItem(cc, i);
cgensupport.c 196 w = PyList_GetItem(v, i);
233 w = PyList_GetItem(v, i);
268 w = PyList_GetItem(v, i);
301 w = PyList_GetItem(v, i);
xxmodule.c 188 item = PyList_GetItem(list, 0);
syslogmodule.c 89 scriptobj = PyList_GetItem(argv, 0);
  /external/python/cpython3/Modules/
termios.c 165 mode.c_iflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 0));
166 mode.c_oflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 1));
167 mode.c_cflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 2));
168 mode.c_lflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 3));
169 ispeed = (speed_t) PyLong_AsLong(PyList_GetItem(term, 4));
170 ospeed = (speed_t) PyLong_AsLong(PyList_GetItem(term, 5));
171 cc = PyList_GetItem(term, 6);
183 v = PyList_GetItem(cc, i);
xxmodule.c 188 item = PyList_GetItem(list, 0);
syslogmodule.c 89 scriptobj = PyList_GetItem(argv, 0);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
listobject.h 12 inserted in the list. Similarly, PyList_GetItem does not increment the
49 PyAPI_FUNC(PyObject *) PyList_GetItem(PyObject *, Py_ssize_t);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
listobject.h 12 inserted in the list. Similarly, PyList_GetItem does not increment the
49 PyAPI_FUNC(PyObject *) PyList_GetItem(PyObject *, Py_ssize_t);
  /external/python/cpython2/Include/
listobject.h 12 inserted in the list. Similarly, PyList_GetItem does not increment the
49 PyAPI_FUNC(PyObject *) PyList_GetItem(PyObject *, Py_ssize_t);
  /external/python/cpython3/Include/
listobject.h 12 inserted in the list. Similarly, PyList_GetItem does not increment the
54 PyAPI_FUNC(PyObject *) PyList_GetItem(PyObject *, Py_ssize_t);
  /external/tensorflow/tensorflow/python/client/
tf_sessionrun_wrapper.i 64 PyObject* item = PyList_GetItem($input, i);
tf_session.i 40 PyObject* item = PyList_GetItem(py_tensor_list, i);
270 PyObject* elem = PyList_GetItem($input, i);
595 PyObject* item = PyList_GetItem($input, i);
616 PyObject* item = PyList_GetItem($input, i);
  /external/libnl/python/netlink/genl/
capi.i 81 pobj = PyList_GetItem(p, 0);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
xxmodule.c 188 item = PyList_GetItem(list, 0);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dynload_beos.c 84 the_item = PyList_GetItem( id_list, idx );
traceback.c 146 PyObject *v = PyList_GetItem(path, i);
_warnings.c 521 *filename = PyList_GetItem(argv, 0);
688 source_line = PyList_GetItem(source_list, lineno-1);
  /external/python/cpython2/Python/
dynload_beos.c 84 the_item = PyList_GetItem( id_list, idx );
traceback.c 146 PyObject *v = PyList_GetItem(path, i);
  /external/tensorflow/tensorflow/python/
pywrap_tfe.i 211 PyObject* elem = PyList_GetItem($input, i);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
traceback.c 146 PyObject *v = PyList_GetItem(path, i);
  /external/tensorflow/tensorflow/lite/python/optimize/
calibration_wrapper.cc 99 PyObject* input = PyList_GetItem(input_value, i);
  /external/tensorflow/tensorflow/python/framework/
cpp_shape_inference.cc 189 PyList_GetItem(input_constant_tensor_values, i));
  /external/python/cpython2/RISCOS/Modules/
swimodule.c 82 { PyObject *q=PyList_GetItem(init,k);
271 { PyObject *q=PyList_GetItem(v,k);

Completed in 753 milliseconds

1 2 3