Lines Matching refs:temp
3201 { PyLongObject *temp = a; a = b; b = temp; }
3237 { PyLongObject *temp = a; a = b; b = temp; }
3251 { PyLongObject *temp = a; a = b; b = temp; }
3900 PyLongObject *temp;
3901 temp = (PyLongObject *) long_add(mod, w);
3903 mod = temp;
3908 temp = (PyLongObject *) long_sub(div, (PyLongObject *)_PyLong_GetOne());
3909 if (temp == NULL) {
3915 div = temp;
3949 PyLongObject *temp;
3950 temp = (PyLongObject *) long_add(mod, w);
3952 mod = temp;
4376 PyLongObject *temp = NULL;
4430 temp = (PyLongObject *)_PyLong_Copy(c);
4431 if (temp == NULL)
4434 c = temp;
4435 temp = NULL;
4451 temp = (PyLongObject *)_PyLong_Copy(b);
4452 if (temp == NULL)
4455 b = temp;
4456 temp = NULL;
4461 temp = long_invmod(a, c);
4462 if (temp == NULL)
4465 a = temp;
4466 temp = NULL;
4479 if (l_mod(a, c, &temp) < 0)
4482 a = temp;
4483 temp = NULL;
4500 if (l_mod(X, c, &temp) < 0) \
4503 X = temp; \
4504 temp = NULL; \
4512 temp = (PyLongObject *)long_mul(X, Y); \
4513 if (temp == NULL) \
4516 result = temp; \
4517 temp = NULL; \
4635 temp = (PyLongObject *)long_sub(z, c);
4636 if (temp == NULL)
4639 z = temp;
4640 temp = NULL;
4654 Py_XDECREF(temp);
5495 PyObject *twice_rem, *result, *temp;
5533 temp = long_neg((PyLongObject*)twice_rem);
5535 twice_rem = temp;
5546 temp = long_sub(quo, (PyLongObject *)one);
5548 temp = long_add(quo, (PyLongObject *)one);
5550 quo = (PyLongObject *)temp;
5555 temp = long_add(rem, (PyLongObject *)b);
5557 temp = long_sub(rem, (PyLongObject *)b);
5559 rem = (PyLongObject *)temp;
5594 PyObject *temp, *result, *ndigits;
5624 temp = long_neg((PyLongObject*)ndigits);
5626 ndigits = temp;
5636 temp = long_pow(result, ndigits, Py_None);
5639 result = temp;
5643 temp = _PyLong_DivmodNear(self, result);
5645 result = temp;
5649 temp = long_sub((PyLongObject *)self,
5652 result = temp;