Lines Matching defs:refcnt
3924 Py_ssize_t refcnt = Py_REFCNT(self);
3926 Py_SET_REFCNT(self, refcnt);
7626 PyObject *oldtype = NULL, *newtype = NULL, *refcnt = NULL;
7644 refcnt = PyLong_FromSsize_t(Py_REFCNT(oldtype));
7645 if (refcnt == NULL) {
7648 if (PyObject_SetAttrString(oldtype, "refcnt_in_del", refcnt) < 0) {
7651 Py_DECREF(refcnt);
7652 refcnt = PyLong_FromSsize_t(Py_REFCNT(newtype));
7653 if (refcnt == NULL) {
7656 if (PyObject_SetAttrString(newtype, "refcnt_in_del", refcnt) < 0) {
7663 Py_XDECREF(refcnt);