Home
last modified time | relevance | path

Searched refs:_Py_dg_dtoa (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Include/
Ddtoa.h7 PyAPI_FUNC(char *) _Py_dg_dtoa(double d, int mode, int ndigits,
/external/python/cpython3/Include/
Ddtoa.h8 PyAPI_FUNC(char *) _Py_dg_dtoa(double d, int mode, int ndigits,
/external/python/cpython3/Python/
Dpystrtod.c1014 digits = _Py_dg_dtoa(d, mode, precision, &decpt_as_int, &sign, in format_float_short()
Ddtoa.c2272 _Py_dg_dtoa(double dd, int mode, int ndigits, in _Py_dg_dtoa() function
/external/python/cpython2/Python/
Dpystrtod.c953 digits = _Py_dg_dtoa(d, mode, precision, &decpt_as_int, &sign, in format_float_short()
Ddtoa.c2345 _Py_dg_dtoa(double dd, int mode, int ndigits, in _Py_dg_dtoa() function
/external/python/cpython3/Objects/
Dfloatobject.c938 buf = _Py_dg_dtoa(x, 3, ndigits, &decpt, &sign, &buf_end); in double_round()
/external/python/cpython2/Objects/
Dfloatobject.c1165 buf = _Py_dg_dtoa(x, 3, ndigits+halfway_case, &decpt, &sign, &buf_end); in _Py_double_round()