Lines Matching refs:m_self
22 free_list = (PyCFunctionObject *)(op->m_self); in PyCFunction_NewEx()
33 op->m_self = self; in PyCFunction_NewEx()
57 return ((PyCFunctionObject *)op) -> m_self; in PyCFunction_GetSelf()
134 Py_XDECREF(m->m_self); in meth_dealloc()
137 m->m_self = (PyObject *)free_list; in meth_dealloc()
166 Py_VISIT(m->m_self); in meth_traverse()
180 self = m->m_self; in meth_get__self__()
204 if (m->m_self == NULL) in meth_repr()
209 m->m_self->ob_type->tp_name, in meth_repr()
210 m->m_self); in meth_repr()
216 if (a->m_self != b->m_self) in meth_compare()
217 return (a->m_self < b->m_self) ? -1 : 1; in meth_compare()
249 eq = a->m_self == b->m_self; in meth_richcompare()
264 if (a->m_self == NULL) in meth_hash()
267 x = PyObject_Hash(a->m_self); in meth_hash()
401 free_list = (PyCFunctionObject *)(v->m_self); in PyCFunction_ClearFreeList()