Home
last modified time | relevance | path

Searched refs:PyOS_double_to_string (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython3/Include/
Dpystrtod.h15 PyAPI_FUNC(char *) PyOS_double_to_string(double val,
/external/python/cpython3/Objects/
Dcomplexobject.c397 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()
Dfloatobject.c380 buf = PyOS_double_to_string(PyFloat_AS_DOUBLE(v), in float_repr()
Dbytesobject.c422 p = PyOS_double_to_string(x, type, prec, dtoa_flags, NULL); in formatfloat()
Dunicodeobject.c13895 p = PyOS_double_to_string(x, arg->ch, prec, dtoa_flags, NULL); in formatfloat()
/external/python/cpython3/Python/
Dpystrtod.c757 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
Dformatter_unicode.c1111 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()
Dmarshal.c300 char *buf = PyOS_double_to_string(v, 'g', 17, 0, NULL); in w_float_str()
/external/python/cpython3/Doc/c-api/
Dconversion.rst121 .. c:function:: char* PyOS_double_to_string(double val, char format_code, int precision, int flags,…
/external/python/cpython3/PC/
Dpython3dll.c523 EXPORT_FUNC(PyOS_double_to_string)
/external/python/cpython3/Doc/data/
Dstable_abi.dat484 func,PyOS_double_to_string,3.2,,
Dpython3.13.abi540 …<elf-symbol name='PyOS_double_to_string' type='func-type' binding='global-binding' visibility='def…
5353PyOS_double_to_string' mangled-name='PyOS_double_to_string' filepath='./Include/pystrtod.h' line='…
/external/python/cpython3/Misc/
Dstable_abi.toml1116 [function.PyOS_double_to_string]
DHISTORY12871 PyOS_ascii_strtod, and PyOS_ascii_atof. Use PyOS_double_to_string and
/external/python/cpython3/Modules/
D_pickle.c2258 buf = PyOS_double_to_string(x, 'r', 0, Py_DTSF_ADD_DOT_0, NULL); in save_float()