Home
last modified time | relevance | path

Searched refs:_Py_double_round (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Include/
Dfloatobject.h133 PyAPI_FUNC(PyObject *) _Py_double_round(double x, int ndigits);
/external/python/cpython2/Objects/
Dfloatobject.c1091 _Py_double_round(double x, int ndigits) { in _Py_double_round() function
1235 _Py_double_round(double x, int ndigits) { in _Py_double_round() function
/external/python/cpython2/Python/
Dbltinmodule.c2216 return _Py_double_round(x, (int)ndigits); in builtin_round()