Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dlongobject.h209 PyAPI_FUNC(PyObject *) _PyLong_GCD(PyObject *, PyObject *);
/external/python/cpython3/Modules/
Dmathmodule.c829 g = _PyLong_GCD(a, b); in math_gcd_impl()
/external/python/cpython3/Objects/
Dlongobject.c4567 _PyLong_GCD(PyObject *aarg, PyObject *barg) in _PyLong_GCD() function
/external/python/cpython3/Modules/_decimal/
D_decimal.c3342 tmp = _PyLong_GCD(numerator, denominator); in dec_as_integer_ratio()