Lines Matching defs:cls
151 array_array_extend_impl(arrayobject *self, PyTypeObject *cls, PyObject *bb);
154 array_array_extend(arrayobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
167 return_value = array_array_extend_impl(self, cls, bb);
293 array_array_fromfile_impl(arrayobject *self, PyTypeObject *cls, PyObject *f,
297 array_array_fromfile(arrayobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
323 return_value = array_array_fromfile_impl(self, cls, f, n);
339 array_array_tofile_impl(arrayobject *self, PyTypeObject *cls, PyObject *f);
342 array_array_tofile(arrayobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
355 return_value = array_array_tofile_impl(self, cls, f);
580 array_array___reduce_ex___impl(arrayobject *self, PyTypeObject *cls,
584 array_array___reduce_ex__(arrayobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
597 return_value = array_array___reduce_ex___impl(self, cls, value);
613 array_arrayiterator___reduce___impl(arrayiterobject *self, PyTypeObject *cls);
616 array_arrayiterator___reduce__(arrayiterobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
622 return array_arrayiterator___reduce___impl(self, cls);