Searched refs:l_divmod (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Objects/ |
D | longobject.c | 3014 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/ |
D | longobject.c | 3639 l_divmod(PyLongObject *v, PyLongObject *w, in l_divmod() function 3713 if (l_divmod((PyLongObject*)a, (PyLongObject*)b, &div, NULL) < 0) in long_div() 3992 if (l_divmod((PyLongObject*)a, (PyLongObject*)b, NULL, &mod) < 0) in long_mod() 4005 if (l_divmod((PyLongObject*)a, (PyLongObject*)b, &div, &mod) < 0) { in long_divmod() 4111 if (l_divmod(a, c, NULL, &temp) < 0) in long_pow() 4132 if (l_divmod(X, c, NULL, &temp) < 0) \ in long_pow() 4648 if (l_divmod(a, b, NULL, &r) < 0) in _PyLong_GCD()
|