Lines Matching refs:m_self
33 free_list = (PyCFunctionObject *)(op->m_self); in PyCFunction_NewEx()
45 op->m_self = self; in PyCFunction_NewEx()
91 Py_XDECREF(m->m_self); in meth_dealloc()
94 m->m_self = (PyObject *)free_list; in meth_dealloc()
108 if (m->m_self == NULL || PyModule_Check(m->m_self)) in meth_reduce()
112 m->m_self, m->m_ml->ml_name); in meth_reduce()
152 if (m->m_self == NULL || PyModule_Check(m->m_self)) in meth_get__qualname__()
155 type = PyType_Check(m->m_self) ? m->m_self : (PyObject*)Py_TYPE(m->m_self); in meth_get__qualname__()
176 Py_VISIT(m->m_self); in meth_traverse()
212 if (m->m_self == NULL || PyModule_Check(m->m_self)) in meth_repr()
217 m->m_self->ob_type->tp_name, in meth_repr()
218 m->m_self); in meth_repr()
236 eq = a->m_self == b->m_self; in meth_richcompare()
251 if (a->m_self == NULL) in meth_hash()
254 x = PyObject_Hash(a->m_self); in meth_hash()
312 free_list = (PyCFunctionObject *)(v->m_self); in PyCFunction_ClearFreeList()