Lines Matching refs:temp
541 double temp;
545 temp = p; p = b*p - a*p_last; p_last = temp;
546 temp = q; q = b*q - a*q_last; q_last = temp;
3123 PyObject *temp, *item, *iter;
3175 temp = PyNumber_Multiply(result, item);
3178 result = temp;
3224 temp = PyNumber_Multiply(result, item);
3227 result = temp;
3247 temp = PyNumber_Multiply(result, item);
3250 result = temp;
3671 PyObject *result = NULL, *temp;
3719 temp = PyNumber_Subtract(n, k);
3720 if (temp == NULL) {
3723 if (Py_SIZE(temp) < 0) {
3724 Py_DECREF(temp);
3728 cmp = PyObject_RichCompareBool(temp, k, Py_LT);
3730 Py_SETREF(k, temp);
3733 Py_DECREF(temp);