Lines Matching refs:ob_ref
14 op->ob_ref = obj; in PyCell_New()
59 Py_XINCREF(((PyCellObject*)op)->ob_ref); in PyCell_Get()
82 Py_XDECREF(op->ob_ref); in cell_dealloc()
98 a = ((PyCellObject *)a)->ob_ref; in cell_richcompare()
99 b = ((PyCellObject *)b)->ob_ref; in cell_richcompare()
109 if (op->ob_ref == NULL) in cell_repr()
113 op, Py_TYPE(op->ob_ref)->tp_name, in cell_repr()
114 op->ob_ref); in cell_repr()
120 Py_VISIT(op->ob_ref); in cell_traverse()
127 Py_CLEAR(op->ob_ref); in cell_clear()
134 if (op->ob_ref == NULL) in cell_get_contents()
139 Py_INCREF(op->ob_ref); in cell_get_contents()
140 return op->ob_ref; in cell_get_contents()
147 Py_XSETREF(op->ob_ref, obj); in cell_set_contents()