Lines Matching defs:func
110 PyObject_CallNoArgs(PyObject *func)
112 return _PyObject_CallNoArgs(func);
133 vectorcallfunc func = _PyVectorcall_Function(callable);
134 if (func == NULL) {
141 res = func(callable, args, nargsf, NULL);
152 res = func(callable, newargs,
236 _PyVectorcall_Call(PyThreadState *tstate, vectorcallfunc func,
239 assert(func != NULL);
245 return func(callable, _PyTuple_ITEMS(tuple), nargs, NULL);
257 PyObject *result = func(callable, args,
281 vectorcallfunc func;
282 memcpy(&func, (char *) callable + offset, sizeof(func));
283 if (func == NULL) {
290 return _PyVectorcall_Call(tstate, func, callable, tuple, kwargs);
305 _PyObject_FastCall(PyObject *func, PyObject *const *args, Py_ssize_t nargs)
308 return _PyObject_FastCallTstate(tstate, func, args, nargs);
368 PyObject_CallOneArg(PyObject *func, PyObject *arg)
376 return _PyObject_VectorcallTstate(tstate, func, args, nargsf, NULL);
383 _PyFunction_Vectorcall(PyObject *func, PyObject* const* stack,
386 assert(PyFunction_Check(func));
387 PyFunctionObject *f = (PyFunctionObject *)func;
526 - PyObject_CallFunction(func, "O", tuple) calls func(*tuple)
527 - PyObject_CallFunction(func, "(OOO)", arg1, arg2, arg3) calls
528 func(*(arg1, arg2, arg3)): func(arg1, arg2, arg3) */