Searched refs:PyCFunction_GET_SELF (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython3/Objects/ |
D | methodobject.c | 135 return PyCFunction_GET_SELF(op); in PyCFunction_GetSelf() 259 self = PyCFunction_GET_SELF(m); in meth_get__self__() 426 PyObject *result = meth(PyCFunction_GET_SELF(func), args, nargs); in cfunction_vectorcall_FASTCALL() 442 PyObject *result = meth(PyCFunction_GET_SELF(func), args, nargs, kwnames); in cfunction_vectorcall_FASTCALL_KEYWORDS() 458 PyObject *result = meth(PyCFunction_GET_SELF(func), cls, args, nargs, kwnames); in cfunction_vectorcall_FASTCALL_KEYWORDS_METHOD() 485 PyObject *result = meth(PyCFunction_GET_SELF(func), NULL); in cfunction_vectorcall_NOARGS() 512 PyObject *result = meth(PyCFunction_GET_SELF(func), args[0]); in cfunction_vectorcall_O() 535 PyObject *self = PyCFunction_GET_SELF(func); in cfunction_call()
|
/external/python/cpython3/Include/cpython/ |
D | methodobject.h | 14 #define PyCFunction_GET_SELF(func) \ macro
|
/external/python/cpython2/Include/ |
D | methodobject.h | 31 #define PyCFunction_GET_SELF(func) \ macro
|
/external/python/pybind11/include/pybind11/ |
D | functional.h | 46 auto c = reinterpret_borrow<capsule>(PyCFunction_GET_SELF(cfunc.ptr()));
|
D | pybind11.h | 379 … auto rec_capsule = reinterpret_borrow<capsule>(PyCFunction_GET_SELF(rec->sibling.ptr())); in PYBIND11_NAMESPACE_BEGIN() 1582 … return h ? (detail::function_record *) reinterpret_borrow<capsule>(PyCFunction_GET_SELF(h.ptr()))
|
/external/python/cffi/c/ |
D | lib_obj.c | 42 y = PyCFunction_GET_SELF(x); in _cpyextfunc_get() 83 lib = (LibObject *)PyCFunction_GET_SELF(x); in _cpyextfunc_type_index()
|
/external/python/cpython2/Objects/ |
D | methodobject.c | 75 PyObject *self = PyCFunction_GET_SELF(func); in PyCFunction_Call()
|
/external/python/cpython2/Python/ |
D | ceval.c | 4354 PyObject *self = PyCFunction_GET_SELF(func); in call_function()
|
/external/marisa-trie/bindings/python/ |
D | marisa-swig_wrap.cxx | 1584 PyObject *mself = PyCFunction_GET_SELF(destroy); in SwigPyObject_dealloc()
|