Home
last modified time | relevance | path

Searched refs:PyInstanceMethodObject (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Objects/
Dclassobject.c358 PyInstanceMethodObject *method; in PyInstanceMethod_New()
359 method = PyObject_GC_New(PyInstanceMethodObject, in PyInstanceMethod_New()
378 #define IMO_OFF(x) offsetof(PyInstanceMethodObject, x)
456 PyInstanceMethodObject *a, *b; in instancemethod_richcompare()
466 a = (PyInstanceMethodObject *)self; in instancemethod_richcompare()
467 b = (PyInstanceMethodObject *)other; in instancemethod_richcompare()
531 .tp_basicsize = sizeof(PyInstanceMethodObject),
/external/python/cpython3/Include/cpython/
Dclassobject.h39 } PyInstanceMethodObject; typedef
51 (((PyInstanceMethodObject *)meth) -> func)