Lines Matching defs:denominator
657 /* ensure the remainder has the same sign as the denominator */
665 it has the same sign as the denominator. */
684 /* ensure the remainder has the same sign as the denominator */
693 it has the same sign as the denominator. */
1556 and with a positive denominator.
1579 PyObject *denominator = NULL;
1609 denominator = PyLong_FromLong(1);
1610 if (denominator == NULL)
1624 Py_SETREF(denominator,
1625 long_methods->nb_lshift(denominator, py_exponent));
1626 if (denominator == NULL)
1630 result_pair = PyTuple_Pack(2, numerator, denominator);
1634 Py_XDECREF(denominator);