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.c370 im = PyOS_double_to_string(v->cval.imag, format_code, in complex_repr()
379 pre = PyOS_double_to_string(v->cval.real, format_code, in complex_repr()
387 im = PyOS_double_to_string(v->cval.imag, format_code, in complex_repr()
Dfloatobject.c351 buf = PyOS_double_to_string(PyFloat_AS_DOUBLE(v), in float_repr()
Dbytesobject.c464 p = PyOS_double_to_string(x, type, prec, in formatfloat()
Dunicodeobject.c14717 p = PyOS_double_to_string(x, arg->ch, prec, dtoa_flags, NULL); in formatfloat()
/third_party/python/Python/
Dpystrtod.c796 char * PyOS_double_to_string(double val, in PyOS_double_to_string() function
1243 char * PyOS_double_to_string(double val, in PyOS_double_to_string() function
Dformatter_unicode.c1090 buf = PyOS_double_to_string(val, (char)type, precision, flags, in format_float_internal()
1270 re_buf = PyOS_double_to_string(re, (char)type, precision, flags, in format_complex_internal()
1274 im_buf = PyOS_double_to_string(im, (char)type, precision, flags, in format_complex_internal()
Dmarshal.c283 char *buf = PyOS_double_to_string(v, 'g', 17, 0, NULL); in w_float_str()
/third_party/python/Doc/c-api/
Dconversion.rst84 .. c:function:: char* PyOS_double_to_string(double val, char format_code, int precision, int flags,…
/third_party/python/PC/
Dpython3dll.c478 EXPORT_FUNC(PyOS_double_to_string)
/third_party/python/Doc/data/
Dstable_abi.dat452 function,PyOS_double_to_string,3.2,
/third_party/python/Misc/
Dstable_abi.txt1011 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.c2258 buf = PyOS_double_to_string(x, 'r', 0, Py_DTSF_ADD_DOT_0, NULL); in save_float()