Searched refs:x_divrem (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Objects/ |
D | longobject.c | 2017 static PyLongObject *x_divrem 2058 z = x_divrem(a, b, prem); in long_divrem() 2078 x_divrem(PyLongObject *v1, PyLongObject *w1, PyLongObject **prem) in x_divrem() function 3298 div = x_divrem(x, b, &rem); in long_true_divide()
|
/external/python/cpython3/Objects/ |
D | longobject.c | 2654 static PyLongObject *x_divrem 2696 z = x_divrem(a, b, prem); in long_divrem() 2727 x_divrem(PyLongObject *v1, PyLongObject *w1, PyLongObject **prem) in x_divrem() function 4042 div = x_divrem(x, b, &rem); in long_true_divide()
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7a1.rst | 866 Rewrite PyLong long division algorithm (x_divrem) to improve its
|
/external/python/cpython3/Misc/ |
D | HISTORY | 15112 - Issue #5512: Rewrite PyLong long division algorithm (x_divrem) to
|