| /external/python/cpython3/Include/ |
| D | pystrtod.h | 15 PyAPI_FUNC(char *) PyOS_double_to_string(double val,
|
| /external/python/cpython2/Include/ |
| D | pystrtod.h | 21 PyAPI_FUNC(char *) PyOS_double_to_string(double val,
|
| /external/python/cpython2/Doc/c-api/ |
| D | float.rst | 108 Use :func:`PyObject_Str` or :func:`PyOS_double_to_string` instead. 120 Use :func:`PyObject_Repr` or :func:`PyOS_double_to_string` instead.
|
| D | conversion.rst | 118 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/ |
| D | floatobject.c | 338 char *tmp = PyOS_double_to_string(v->ob_fval, 'g', in PyFloat_AsString() 348 char * tmp = PyOS_double_to_string(v->ob_fval, 'r', 0, in PyFloat_AsReprString() 360 buf = PyOS_double_to_string(v->ob_fval, in float_print() 364 buf = PyOS_double_to_string(v->ob_fval, in float_print() 377 char *buf = PyOS_double_to_string(PyFloat_AS_DOUBLE(v), in float_str_or_repr() 2286 char *buf = PyOS_double_to_string( in PyFloat_Fini()
|
| D | complexobject.c | 388 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()
|
| D | bytesobject.c | 431 p = PyOS_double_to_string(x, type, prec, in formatfloat()
|
| D | stringobject.c | 3971 p = PyOS_double_to_string(x, type, prec, in formatfloat()
|
| D | unicodeobject.c | 8169 p = PyOS_double_to_string(x, type, prec, in formatfloat()
|
| /external/python/cpython3/Objects/ |
| D | complexobject.c | 370 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()
|
| D | floatobject.c | 351 buf = PyOS_double_to_string(PyFloat_AS_DOUBLE(v), in float_repr()
|
| D | bytesobject.c | 464 p = PyOS_double_to_string(x, type, prec, in formatfloat()
|
| /external/python/cpython2/Objects/stringlib/ |
| D | formatter.h | 1001 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/ |
| D | pystrtod.c | 796 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
|
| D | formatter_unicode.c | 1090 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()
|
| D | marshal.c | 283 char *buf = PyOS_double_to_string(v, 'g', 17, 0, NULL); in w_float_str()
|
| /external/python/cpython2/Python/ |
| D | pystrtod.c | 737 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
|
| D | marshal.c | 270 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/ |
| D | conversion.rst | 84 .. c:function:: char* PyOS_double_to_string(double val, char format_code, int precision, int flags,…
|
| /external/python/cpython3/PC/ |
| D | python3dll.c | 478 EXPORT_FUNC(PyOS_double_to_string)
|
| /external/python/cpython3/Doc/data/ |
| D | stable_abi.dat | 452 function,PyOS_double_to_string,3.2,
|
| /external/python/cpython3/Misc/ |
| D | stable_abi.txt | 1011 function PyOS_double_to_string
|
| /external/python/cpython2/Misc/NEWS.d/ |
| D | 2.7a1.rst | 701 PyOS_double_to_string. 5187 Removed _PyOS_double_to_string. Use PyOS_double_to_string instead. This is
|
| /external/python/cpython2/Modules/ |
| D | cPickle.c | 1218 buf = PyOS_double_to_string(x, 'g', 17, 0, NULL); in save_float()
|
| /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()
|