Lines Matching defs:tmp2
189 PyObject *tmp1 = NULL, *tmp2 = NULL, *result;
228 if ((tmp2 = PyNumber_FloorDivide(diff, step)) == NULL)
231 if ((result = PyNumber_Add(tmp2, one)) == NULL)
234 Py_DECREF(tmp2);
242 Py_XDECREF(tmp2);
386 PyObject *tmp2 = NULL;
414 tmp2 = PyNumber_Remainder(tmp1, r->step);
415 if (tmp2 == NULL)
418 result = PyObject_RichCompareBool(tmp2, zero, Py_EQ);
421 Py_XDECREF(tmp2);