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 | 619 getarrayitem(PyObject *op, Py_ssize_t i) in getarrayitem() function 723 vi = getarrayitem(v, i); in array_richcompare() 724 wi = getarrayitem(w, i); in array_richcompare() 795 return getarrayitem((PyObject *)a, i); in array_item() 1105 selfi = getarrayitem((PyObject *)self, i); in array_array_count() 1138 selfi = getarrayitem((PyObject *)self, i); in array_array_index() 1160 PyObject *selfi = getarrayitem((PyObject *)self, i); in array_contains() 1188 selfi = getarrayitem((PyObject *)self,i); in array_array_remove() 1233 v = getarrayitem((PyObject *)self, i); in array_array_pop_impl() 1585 PyObject *v = getarrayitem((PyObject *)self, i); in array_array_tolist_impl()
|