Lines Matching refs:ob_ref
15 op->ob_ref = obj; in PyCell_New()
29 Py_XINCREF(((PyCellObject*)op)->ob_ref); in PyCell_Get()
52 Py_XDECREF(op->ob_ref); in cell_dealloc()
68 a = ((PyCellObject *)a)->ob_ref; in cell_richcompare()
69 b = ((PyCellObject *)b)->ob_ref; in cell_richcompare()
79 if (op->ob_ref == NULL) in cell_repr()
83 op, op->ob_ref->ob_type->tp_name, in cell_repr()
84 op->ob_ref); in cell_repr()
90 Py_VISIT(op->ob_ref); in cell_traverse()
97 Py_CLEAR(op->ob_ref); in cell_clear()
104 if (op->ob_ref == NULL) in cell_get_contents()
109 Py_INCREF(op->ob_ref); in cell_get_contents()
110 return op->ob_ref; in cell_get_contents()
117 Py_XSETREF(op->ob_ref, obj); in cell_set_contents()