Searched refs:getarrayitem (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Modules/ |
D | arraymodule.c | 453 getarrayitem(PyObject *op, Py_ssize_t i) in getarrayitem() function 534 vi = getarrayitem(v, i); in array_richcompare() 535 wi = getarrayitem(w, i); in array_richcompare() 603 return getarrayitem((PyObject *)a, i); in array_item() 934 PyObject *selfi = getarrayitem((PyObject *)self, i); in array_count() 956 PyObject *selfi = getarrayitem((PyObject *)self, i); in array_index() 981 PyObject *selfi = getarrayitem((PyObject *)self, i); in array_contains() 994 PyObject *selfi = getarrayitem((PyObject *)self,i); in array_remove() 1034 v = getarrayitem((PyObject *)self,i); in array_pop() 1381 PyObject *v = getarrayitem((PyObject *)self, i); in array_tolist()
|
/external/python/cpython3/Modules/ |
D | arraymodule.c | 614 getarrayitem(PyObject *op, Py_ssize_t i) in getarrayitem() function 718 vi = getarrayitem(v, i); in array_richcompare() 719 wi = getarrayitem(w, i); in array_richcompare() 790 return getarrayitem((PyObject *)a, i); in array_item() 1100 selfi = getarrayitem((PyObject *)self, i); in array_array_count() 1133 selfi = getarrayitem((PyObject *)self, i); in array_array_index() 1155 PyObject *selfi = getarrayitem((PyObject *)self, i); in array_contains() 1183 selfi = getarrayitem((PyObject *)self,i); in array_array_remove() 1228 v = getarrayitem((PyObject *)self, i); in array_array_pop_impl() 1580 PyObject *v = getarrayitem((PyObject *)self, i); in array_array_tolist_impl()
|