Home
last modified time | relevance | path

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

12

/aosp_15_r20/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.
/aosp_15_r20/external/python/cpython2/Include/
Dpystrtod.h15 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dpystrtod.h9 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
/aosp_15_r20/external/python/cpython3/Include/
Dpystrtod.h9 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dpystrtod.h9 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dpystrtod.h9 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dpystrtod.h9 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
/aosp_15_r20/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()
/aosp_15_r20/external/python/cpython3/Objects/
Dcomplexobject.c775 z = PyOS_string_to_double(s, &end, NULL); in complex_from_string_inner()
788 y = PyOS_string_to_double(s, &end, NULL); in complex_from_string_inner()
Dfloatobject.c184 x = PyOS_string_to_double(s, (char **)&end, NULL); in float_from_string_inner()
/aosp_15_r20/external/python/cpython3/Parser/
Dpegen.c589 compl.imag = PyOS_string_to_double(s, (char **)&end, NULL); in parsenumber_raw()
595 dx = PyOS_string_to_double(s, NULL, NULL); in parsenumber_raw()
/aosp_15_r20/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()
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dconversion.rst51 .. c:function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_excep…
/aosp_15_r20/external/python/cpython3/Python/
Dpystrtod.c337 PyOS_string_to_double(const char *s, in PyOS_string_to_double() function
Dmarshal.c925 return PyOS_string_to_double(buf, NULL, NULL); in r_float_str()
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c497 EXPORT_FUNC(PyOS_string_to_double)
/aosp_15_r20/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()
/aosp_15_r20/external/python/cpython3/Doc/data/
Dstable_abi.dat471 function,PyOS_string_to_double,3.2,,
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.1.rst508 * Added a new :c:func:`PyOS_string_to_double` function to replace the
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml1115 [function.PyOS_string_to_double]
/aosp_15_r20/external/python/cpython3/Modules/
D_testcapimodule.c3209 result = PyOS_string_to_double(STR, NULL, NULL); \ in test_string_to_double()
3218 result = PyOS_string_to_double(STR, NULL, NULL); \ in test_string_to_double()

12