Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dlongobject.c2526 static PyLongObject *x_divrem
2569 z = x_divrem(a, b, prem); in long_divrem()
2600 x_divrem(PyLongObject *v1, PyLongObject *w1, PyLongObject **prem) in x_divrem() function
3915 div = x_divrem(x, b, &rem); in long_true_divide()
/third_party/python/Misc/
DHISTORY15112 - Issue #5512: Rewrite PyLong long division algorithm (x_divrem) to