Searched refs:_PyCFunction_TrampolineCall (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Include/internal/ |
D | pycore_emscripten_trampoline.h | 49 #define _PyCFunction_TrampolineCall(meth, self, args) \ macro 67 #define _PyCFunction_TrampolineCall(meth, self, args) \ macro
|
D | pycore_object.h | 779 #define _PyCFunction_TrampolineCall(meth, self, args) \ macro
|
/external/python/cpython3/Objects/ |
D | methodobject.c | 484 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()
|
D | descrobject.c | 324 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/ |
D | executor_cases.c.h | 3572 res = _PyCFunction_TrampolineCall(cfunc, PyCFunction_GET_SELF(callable), arg); 3794 res = _PyCFunction_TrampolineCall(cfunc, self, arg); 3895 res = _PyCFunction_TrampolineCall(cfunc, self, NULL);
|
D | bytecodes.c | 3499 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()
|
D | generated_cases.c.h | 1266 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()
|