Lines Matching refs:argstuple
104 PyObject *argstuple, *result; in _PyObject_FastCallDict() local
115 argstuple = _PyStack_AsTuple(args, nargs); in _PyObject_FastCallDict()
116 if (argstuple == NULL) { in _PyObject_FastCallDict()
121 Py_DECREF(argstuple); in _PyObject_FastCallDict()
125 result = (*call)(callable, argstuple, kwargs); in _PyObject_FastCallDict()
128 Py_DECREF(argstuple); in _PyObject_FastCallDict()
163 PyObject *argstuple; in _PyObject_FastCallKeywords() local
177 argstuple = _PyStack_AsTuple(stack, nargs); in _PyObject_FastCallKeywords()
178 if (argstuple == NULL) { in _PyObject_FastCallKeywords()
185 Py_DECREF(argstuple); in _PyObject_FastCallKeywords()
194 Py_DECREF(argstuple); in _PyObject_FastCallKeywords()
199 result = (*call)(callable, argstuple, kwdict); in _PyObject_FastCallKeywords()
203 Py_DECREF(argstuple); in _PyObject_FastCallKeywords()
509 PyObject *argstuple = _PyStack_AsTuple(args, nargs); in _PyMethodDef_RawFastCallDict() local
510 if (argstuple == NULL) { in _PyMethodDef_RawFastCallDict()
515 result = (*(PyCFunctionWithKeywords)meth) (self, argstuple, kwargs); in _PyMethodDef_RawFastCallDict()
518 result = (*meth) (self, argstuple); in _PyMethodDef_RawFastCallDict()
520 Py_DECREF(argstuple); in _PyMethodDef_RawFastCallDict()