Home
last modified time | relevance | path

Searched refs:_PyLong_GCD (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Include/
Dlongobject.h209 PyAPI_FUNC(PyObject *) _PyLong_GCD(PyObject *, PyObject *);
/third_party/python/Modules/
Dmathmodule.c862 Py_SETREF(res, _PyLong_GCD(res, x)); in math_gcd()
886 g = _PyLong_GCD(a, b); in long_lcm()
/third_party/python/Objects/
Dlongobject.c4728 _PyLong_GCD(PyObject *aarg, PyObject *barg) in _PyLong_GCD() function
/third_party/python/Modules/_decimal/
D_decimal.c3499 tmp = _PyLong_GCD(numerator, denominator); in dec_as_integer_ratio()