Home
last modified time | relevance | path

Searched refs:PyOS_string_to_double (Results 1 – 25 of 28) sorted by relevance

12

/external/python/cpython3/Include/
Dpystrtod.h9 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
/external/python/cpython2/Include/
Dpystrtod.h15 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
/external/python/cpython2/Doc/c-api/
Dconversion.rst54 .. c:function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_excep…
102 Use :c:func:`PyOS_string_to_double` instead.
165 Use :c:func:`PyOS_string_to_double` instead.
/external/python/cpython2/Python/
Dmarshal.c718 dx = PyOS_string_to_double(buf, NULL, NULL); in r_object()
759 c.real = PyOS_string_to_double(buf, NULL, NULL); in r_object()
772 c.imag = PyOS_string_to_double(buf, NULL, NULL); in r_object()
Dpystrtod.c336 PyOS_string_to_double(const char *s, in PyOS_string_to_double() function
Dast.c3354 complex.imag = PyOS_string_to_double(s, (char **)&end, NULL); in parsenumber()
3362 dx = PyOS_string_to_double(s, NULL, NULL); in parsenumber()
/external/python/cpython3/Objects/
Dcomplexobject.c753 z = PyOS_string_to_double(s, &end, NULL); in complex_from_string_inner()
766 y = PyOS_string_to_double(s, &end, NULL); in complex_from_string_inner()
Dfloatobject.c165 x = PyOS_string_to_double(s, (char **)&end, NULL); in float_from_string_inner()
/external/python/cpython3/Doc/c-api/
Dconversion.rst50 .. c:function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_excep…
/external/python/cpython2/Objects/
Dcomplexobject.c1043 z = PyOS_string_to_double(s, &end, NULL); in complex_subtype_from_string()
1056 y = PyOS_string_to_double(s, &end, NULL); in complex_subtype_from_string()
Dfloatobject.c224 x = PyOS_string_to_double(s, (char **)&end, NULL); in PyFloat_FromString()
/external/python/cpython3/Python/
Dpystrtod.c338 PyOS_string_to_double(const char *s, in PyOS_string_to_double() function
Dmarshal.c874 return PyOS_string_to_double(buf, NULL, NULL); in r_float_str()
/external/python/cpython2/Modules/
Dstropmodule.c886 x = PyOS_string_to_double(s, &end, PyExc_OverflowError); in strop_atof()
D_json.c1376 double d = PyOS_string_to_double(PyString_AS_STRING(numstr), in _match_number_str()
DcPickle.c3618 d = PyOS_string_to_double(s, &endptr, PyExc_OverflowError); in load_float()
/external/python/cpython3/PC/
Dpython3dll.c486 EXPORT_FUNC(PyOS_string_to_double)
/external/python/cpython3/Doc/data/
Dstable_abi.dat459 function,PyOS_string_to_double,3.2,
/external/python/cpython3/Parser/
Dpegen.c1063 compl.imag = PyOS_string_to_double(s, (char **)&end, NULL); in parsenumber_raw()
1069 dx = PyOS_string_to_double(s, NULL, NULL); in parsenumber_raw()
/external/python/cpython3/Doc/whatsnew/
D3.1.rst507 * Added a new :c:func:`PyOS_string_to_double` function to replace the
D2.7.rst2153 a new :c:func:`PyOS_string_to_double` function was added. The old
2541 * Use the new :c:func:`PyOS_string_to_double` function instead of the old
/external/python/cpython3/Misc/
Dstable_abi.txt1023 function PyOS_string_to_double
/external/python/cpython3/Modules/
D_testcapimodule.c3034 result = PyOS_string_to_double(STR, NULL, NULL); \ in test_string_to_double()
3043 result = PyOS_string_to_double(STR, NULL, NULL); \ in test_string_to_double()
D_pickle.c5391 d = PyOS_string_to_double(s, &endptr, PyExc_OverflowError); in load_float()
/external/python/cpython2/Doc/whatsnew/
D2.7.rst2129 a new :c:func:`PyOS_string_to_double` function was added. The old
2511 * Use the new :c:func:`PyOS_string_to_double` function instead of the old

12