Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dpystrtod.h21 PyAPI_FUNC(char *) PyOS_double_to_string(double val,
/external/python/cpython3/Include/
Dpystrtod.h15 PyAPI_FUNC(char *) PyOS_double_to_string(double val,
/external/python/cpython2/Doc/c-api/
Dfloat.rst108 Use :func:`PyObject_Str` or :func:`PyOS_double_to_string` instead.
120 Use :func:`PyObject_Repr` or :func:`PyOS_double_to_string` instead.
Dconversion.rst118 This function is removed in Python 2.7 and 3.1. Use :func:`PyOS_double_to_string`
122 .. c:function:: char* PyOS_double_to_string(double val, char format_code, int precision, int flags,…
/external/python/cpython2/Objects/
Dfloatobject.c339 char *tmp = PyOS_double_to_string(v->ob_fval, 'g', in PyFloat_AsString()
349 char * tmp = PyOS_double_to_string(v->ob_fval, 'r', 0, in PyFloat_AsReprString()
361 buf = PyOS_double_to_string(v->ob_fval, in float_print()
365 buf = PyOS_double_to_string(v->ob_fval, in float_print()
378 char *buf = PyOS_double_to_string(PyFloat_AS_DOUBLE(v), in float_str_or_repr()
2287 char *buf = PyOS_double_to_string( in PyFloat_Fini()
Dcomplexobject.c388 im = PyOS_double_to_string(v->cval.imag, format_code, in complex_format()
396 pre = PyOS_double_to_string(v->cval.real, format_code, in complex_format()
404 im = PyOS_double_to_string(v->cval.imag, format_code, in complex_format()
Dstringobject.c3974 p = PyOS_double_to_string(x, type, prec, in formatfloat()
Dunicodeobject.c8173 p = PyOS_double_to_string(x, type, prec, in formatfloat()
/external/python/cpython3/Objects/
Dcomplexobject.c353 im = PyOS_double_to_string(v->cval.imag, format_code, in complex_repr()
362 pre = PyOS_double_to_string(v->cval.real, format_code, in complex_repr()
370 im = PyOS_double_to_string(v->cval.imag, format_code, in complex_repr()
Dfloatobject.c317 buf = PyOS_double_to_string(PyFloat_AS_DOUBLE(v), in float_repr()
Dbytesobject.c429 p = PyOS_double_to_string(x, type, prec, in formatfloat()
Dunicodeobject.c14044 p = PyOS_double_to_string(x, arg->ch, prec, dtoa_flags, NULL); in formatfloat()
/external/python/cpython2/Objects/stringlib/
Dformatter.h1001 buf = PyOS_double_to_string(val, (char)type, precision, flags, in format_float_internal()
1181 re_buf = PyOS_double_to_string(re, (char)type, precision, flags, in format_complex_internal()
1185 im_buf = PyOS_double_to_string(im, (char)type, precision, flags, in format_complex_internal()
/external/python/cpython3/Python/
Dpystrtod.c791 PyAPI_FUNC(char *) PyOS_double_to_string(double val, in PyOS_double_to_string() function
1240 PyAPI_FUNC(char *) PyOS_double_to_string(double val, in PyOS_double_to_string() function
Dformatter_unicode.c1081 buf = PyOS_double_to_string(val, (char)type, precision, flags, in format_float_internal()
1258 re_buf = PyOS_double_to_string(re, (char)type, precision, flags, in format_complex_internal()
1262 im_buf = PyOS_double_to_string(im, (char)type, precision, flags, in format_complex_internal()
Dmarshal.c372 char *buf = PyOS_double_to_string(PyFloat_AS_DOUBLE(v), in w_complex_object()
405 buf = PyOS_double_to_string(PyComplex_RealAsDouble(v), in w_complex_object()
415 buf = PyOS_double_to_string(PyComplex_ImagAsDouble(v), in w_complex_object()
/external/python/cpython2/Python/
Dpystrtod.c737 PyAPI_FUNC(char *) PyOS_double_to_string(double val, in PyOS_double_to_string() function
1185 PyAPI_FUNC(char *) PyOS_double_to_string(double val, in PyOS_double_to_string() function
Dmarshal.c270 char *buf = PyOS_double_to_string(PyFloat_AS_DOUBLE(v), in w_object()
304 buf = PyOS_double_to_string(PyComplex_RealAsDouble(v), in w_object()
314 buf = PyOS_double_to_string(PyComplex_ImagAsDouble(v), in w_object()
/external/python/cpython3/Doc/c-api/
Dconversion.rst88 .. c:function:: char* PyOS_double_to_string(double val, char format_code, int precision, int flags,…
/external/python/cpython3/PC/
Dpython3.def433 PyOS_double_to_string=python36.PyOS_double_to_string
/external/python/cpython2/Modules/
DcPickle.c1208 buf = PyOS_double_to_string(x, 'g', 17, 0, NULL); in save_float()
/external/python/cpython3/Modules/
D_pickle.c1989 buf = PyOS_double_to_string(x, 'r', 0, Py_DTSF_ADD_DOT_0, NULL); in save_float()
/external/python/cpython2/Misc/
DNEWS7495 _PyOS_double_to_string or PyOS_double_to_string.
8852 - Removed _PyOS_double_to_string. Use PyOS_double_to_string instead. This is in
/external/python/cpython3/Misc/
DHISTORY12871 PyOS_ascii_strtod, and PyOS_ascii_atof. Use PyOS_double_to_string and