Home
last modified time | relevance | path

Searched refs:_PyCFunction_TrampolineCall (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Include/internal/
Dpycore_emscripten_trampoline.h49 #define _PyCFunction_TrampolineCall(meth, self, args) \ macro
67 #define _PyCFunction_TrampolineCall(meth, self, args) \ macro
Dpycore_object.h779 #define _PyCFunction_TrampolineCall(meth, self, args) \ macro
/external/python/cpython3/Objects/
Dmethodobject.c484 PyObject *result = _PyCFunction_TrampolineCall( in cfunction_vectorcall_NOARGS()
512 PyObject *result = _PyCFunction_TrampolineCall( in cfunction_vectorcall_O()
551 result = _PyCFunction_TrampolineCall(meth, self, args); in cfunction_call()
Ddescrobject.c324 PyObject *result = _PyCFunction_TrampolineCall( in method_vectorcall_VARARGS()
447 PyObject *result = _PyCFunction_TrampolineCall(meth, args[0], NULL); in method_vectorcall_NOARGS()
475 PyObject *result = _PyCFunction_TrampolineCall(meth, args[0], args[1]); in method_vectorcall_O()
/external/python/cpython3/Python/
Dexecutor_cases.c.h3572 res = _PyCFunction_TrampolineCall(cfunc, PyCFunction_GET_SELF(callable), arg);
3794 res = _PyCFunction_TrampolineCall(cfunc, self, arg);
3895 res = _PyCFunction_TrampolineCall(cfunc, self, NULL);
Dbytecodes.c3499 res = _PyCFunction_TrampolineCall(cfunc, PyCFunction_GET_SELF(callable), arg); in dummy_func()
3668 res = _PyCFunction_TrampolineCall(cfunc, self, arg); in dummy_func()
3736 res = _PyCFunction_TrampolineCall(cfunc, self, NULL); in dummy_func()
Dgenerated_cases.c.h1266 res = _PyCFunction_TrampolineCall(cfunc, PyCFunction_GET_SELF(callable), arg); in TARGET()
1742 res = _PyCFunction_TrampolineCall(cfunc, self, NULL); in TARGET()
1792 res = _PyCFunction_TrampolineCall(cfunc, self, arg); in TARGET()