Home
last modified time | relevance | path

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

/third_party/python/Include/
Dpystrtod.h15 PyAPI_FUNC(char *) PyOS_double_to_string(double val,
/third_party/python/Objects/
Dcomplexobject.c371 im = PyOS_double_to_string(v->cval.imag, format_code, in complex_repr()
380 pre = PyOS_double_to_string(v->cval.real, format_code, in complex_repr()
388 im = PyOS_double_to_string(v->cval.imag, format_code, in complex_repr()
Dfloatobject.c387 buf = PyOS_double_to_string(PyFloat_AS_DOUBLE(v), in float_repr()
Dbytesobject.c433 p = PyOS_double_to_string(x, type, prec, dtoa_flags, NULL); in formatfloat()
Dunicodeobject.c14415 p = PyOS_double_to_string(x, arg->ch, prec, dtoa_flags, NULL); in formatfloat()
/third_party/python/Python/
Dpystrtod.c795 char * PyOS_double_to_string(double val, in PyOS_double_to_string() function
1259 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.c285 char *buf = PyOS_double_to_string(v, 'g', 17, 0, NULL); in w_float_str()
/third_party/python/Doc/c-api/
Dconversion.rst85 .. c:function:: char* PyOS_double_to_string(double val, char format_code, int precision, int flags,…
/third_party/python/PC/
Dpython3dll.c489 EXPORT_FUNC(PyOS_double_to_string)
/third_party/python/Doc/data/
Dstable_abi.dat464 function,PyOS_double_to_string,3.2,,
/third_party/python/Misc/
Dstable_abi.toml1103 [function.PyOS_double_to_string]
DHISTORY12871 PyOS_ascii_strtod, and PyOS_ascii_atof. Use PyOS_double_to_string and
/third_party/python/Modules/
D_pickle.c2260 buf = PyOS_double_to_string(x, 'r', 0, Py_DTSF_ADD_DOT_0, NULL); in save_float()