Searched refs:PyOS_double_to_string (Results 1 – 15 of 15) sorted by relevance
/external/python/cpython3/Include/ |
D | pystrtod.h | 15 PyAPI_FUNC(char *) PyOS_double_to_string(double val,
|
/external/python/cpython3/Objects/ |
D | complexobject.c | 397 im = PyOS_double_to_string(v->cval.imag, format_code, in complex_repr() 406 pre = PyOS_double_to_string(v->cval.real, format_code, in complex_repr() 414 im = PyOS_double_to_string(v->cval.imag, format_code, in complex_repr()
|
D | floatobject.c | 380 buf = PyOS_double_to_string(PyFloat_AS_DOUBLE(v), in float_repr()
|
D | bytesobject.c | 422 p = PyOS_double_to_string(x, type, prec, dtoa_flags, NULL); in formatfloat()
|
D | unicodeobject.c | 13895 p = PyOS_double_to_string(x, arg->ch, prec, dtoa_flags, NULL); in formatfloat()
|
/external/python/cpython3/Python/ |
D | pystrtod.c | 757 char * PyOS_double_to_string(double val, in PyOS_double_to_string() function 1221 char * PyOS_double_to_string(double val, in PyOS_double_to_string() function
|
D | formatter_unicode.c | 1111 buf = PyOS_double_to_string(val, (char)type, precision, flags, in format_float_internal() 1293 re_buf = PyOS_double_to_string(re, (char)type, precision, flags, in format_complex_internal() 1297 im_buf = PyOS_double_to_string(im, (char)type, precision, flags, in format_complex_internal()
|
D | marshal.c | 300 char *buf = PyOS_double_to_string(v, 'g', 17, 0, NULL); in w_float_str()
|
/external/python/cpython3/Doc/c-api/ |
D | conversion.rst | 121 .. c:function:: char* PyOS_double_to_string(double val, char format_code, int precision, int flags,…
|
/external/python/cpython3/PC/ |
D | python3dll.c | 523 EXPORT_FUNC(PyOS_double_to_string)
|
/external/python/cpython3/Doc/data/ |
D | stable_abi.dat | 484 func,PyOS_double_to_string,3.2,,
|
D | python3.13.abi | 540 …<elf-symbol name='PyOS_double_to_string' type='func-type' binding='global-binding' visibility='def… 5353 …PyOS_double_to_string' mangled-name='PyOS_double_to_string' filepath='./Include/pystrtod.h' line='…
|
/external/python/cpython3/Misc/ |
D | stable_abi.toml | 1116 [function.PyOS_double_to_string]
|
D | HISTORY | 12871 PyOS_ascii_strtod, and PyOS_ascii_atof. Use PyOS_double_to_string and
|
/external/python/cpython3/Modules/ |
D | _pickle.c | 2258 buf = PyOS_double_to_string(x, 'r', 0, Py_DTSF_ADD_DOT_0, NULL); in save_float()
|