Searched refs:_Py_dg_dtoa (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Include/ |
D | dtoa.h | 7 PyAPI_FUNC(char *) _Py_dg_dtoa(double d, int mode, int ndigits,
|
/external/python/cpython3/Include/ |
D | dtoa.h | 8 PyAPI_FUNC(char *) _Py_dg_dtoa(double d, int mode, int ndigits,
|
/external/python/cpython2/Python/ |
D | pystrtod.c | 953 digits = _Py_dg_dtoa(d, mode, precision, &decpt_as_int, &sign, in format_float_short()
|
D | dtoa.c | 2345 _Py_dg_dtoa(double dd, int mode, int ndigits, in _Py_dg_dtoa() function
|
/external/python/cpython3/Python/ |
D | pystrtod.c | 1014 digits = _Py_dg_dtoa(d, mode, precision, &decpt_as_int, &sign, in format_float_short()
|
D | dtoa.c | 2243 _Py_dg_dtoa(double dd, int mode, int ndigits, in _Py_dg_dtoa() function
|
/external/python/cpython3/Objects/ |
D | floatobject.c | 947 buf = _Py_dg_dtoa(x, 3, ndigits, &decpt, &sign, &buf_end); in double_round()
|
/external/python/cpython2/Objects/ |
D | floatobject.c | 1165 buf = _Py_dg_dtoa(x, 3, ndigits+halfway_case, &decpt, &sign, &buf_end); in _Py_double_round()
|