Home
last modified time | relevance | path

Searched refs:PyCFunction_GET_SELF (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Objects/
Dmethodobject.c135 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/
Dmethodobject.h14 #define PyCFunction_GET_SELF(func) \ macro
/external/python/cpython2/Include/
Dmethodobject.h31 #define PyCFunction_GET_SELF(func) \ macro
/external/python/pybind11/include/pybind11/
Dfunctional.h46 auto c = reinterpret_borrow<capsule>(PyCFunction_GET_SELF(cfunc.ptr()));
Dpybind11.h379 … 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/
Dlib_obj.c42 y = PyCFunction_GET_SELF(x); in _cpyextfunc_get()
83 lib = (LibObject *)PyCFunction_GET_SELF(x); in _cpyextfunc_type_index()
/external/python/cpython2/Objects/
Dmethodobject.c75 PyObject *self = PyCFunction_GET_SELF(func); in PyCFunction_Call()
/external/python/cpython2/Python/
Dceval.c4354 PyObject *self = PyCFunction_GET_SELF(func); in call_function()
/external/marisa-trie/bindings/python/
Dmarisa-swig_wrap.cxx1584 PyObject *mself = PyCFunction_GET_SELF(destroy); in SwigPyObject_dealloc()