Lines Matching refs:py_ob_id
819 PyObject *py_ob_id = 0, *memo_len = 0, *t = 0; in put2() local
835 if (!( py_ob_id = PyLong_FromVoidPtr(ob))) in put2()
849 if (PyDict_SetItem(self->memo, py_ob_id, t) < 0) in put2()
891 Py_XDECREF(py_ob_id); in put2()
2554 PyObject *py_ob_id = PyLong_FromVoidPtr(ob); in save_reduce() local
2555 if (!py_ob_id) in save_reduce()
2557 if (PyDict_GetItem(self->memo, py_ob_id)) { in save_reduce()
2560 get(self, py_ob_id) < 0) { in save_reduce()
2561 Py_DECREF(py_ob_id); in save_reduce()
2564 Py_DECREF(py_ob_id); in save_reduce()
2567 Py_DECREF(py_ob_id); in save_reduce()
2599 PyObject *py_ob_id = 0, *__reduce__ = 0, *t = 0; in save() local
2673 if (!( py_ob_id = PyLong_FromVoidPtr(args))) in save()
2676 if (PyDict_GetItem(self->memo, py_ob_id)) { in save()
2677 if (get(self, py_ob_id) < 0) in save()
2838 Py_XDECREF(py_ob_id); in save()