Home
last modified time | relevance | path

Searched refs:l_divmod (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
Dlongobject.c3014 l_divmod(PyLongObject *v, PyLongObject *w, in l_divmod() function
3063 if (l_divmod(a, b, &div, NULL) < 0) in long_div()
3079 else if (l_divmod(a, b, &div, NULL) < 0) in long_classic_div()
3360 if (l_divmod(a, b, NULL, &mod) < 0) in long_mod()
3375 if (l_divmod(a, b, &div, &mod) < 0) { in long_divmod()
3487 if (l_divmod(a, c, NULL, &temp) < 0) in long_pow()
3508 if (l_divmod(X, c, NULL, &temp) < 0) \ in long_pow()
/external/python/cpython3/Objects/
Dlongobject.c3749 l_divmod(PyLongObject *v, PyLongObject *w, in l_divmod() function
3823 if (l_divmod((PyLongObject*)a, (PyLongObject*)b, &div, NULL) < 0) in long_div()
4102 if (l_divmod((PyLongObject*)a, (PyLongObject*)b, NULL, &mod) < 0) in long_mod()
4115 if (l_divmod((PyLongObject*)a, (PyLongObject*)b, &div, &mod) < 0) { in long_divmod()
4175 if (l_divmod(a, n, &q, &r) == -1) { in long_invmod()
4327 if (l_divmod(a, c, NULL, &temp) < 0) in long_pow()
4348 if (l_divmod(X, c, NULL, &temp) < 0) \ in long_pow()
4909 if (l_divmod(a, b, NULL, &r) < 0) in _PyLong_GCD()