Home
last modified time | relevance | path

Searched refs:PyLong_AsDouble (Results 1 – 17 of 17) sorted by relevance

/third_party/python/Include/
Dlongobject.h92 PyAPI_FUNC(double) PyLong_AsDouble(PyObject *);
/third_party/python/Objects/
Dfloatobject.c275 double val = PyLong_AsDouble(res); in PyFloat_AsDouble()
331 *dbl = PyLong_AsDouble(obj); in convert_to_double()
434 j = PyLong_AsDouble(w); in float_richcompare()
Dcomplexobject.c440 pc->real = PyLong_AsDouble(obj); in to_complex()
Dlongobject.c2876 PyLong_AsDouble(PyObject *v) in PyLong_AsDouble() function
4940 result = PyLong_AsDouble(v); in long_float()
Dabstract.c1685 double val = PyLong_AsDouble(res); in PyNumber_Float()
/third_party/python/Doc/c-api/
Dlong.rst301 .. c:function:: double PyLong_AsDouble(PyObject *pylong)
/third_party/python/Modules/
Dmathmodule.c93 target_var = PyLong_AsDouble(obj); \
2284 x = PyLong_AsDouble(arg); in loghelper()
D_datetimemodule.c2389 dnum = PyLong_AsDouble(factor); in accum()
D_testcapimodule.c939 out = PyLong_AsDouble(Py_None); in test_long_as_double()
/third_party/python/Doc/data/
Dstable_abi.dat337 function,PyLong_AsDouble,3.2,
Drefcounts.dat1149 PyLong_AsDouble:double:::
1150 PyLong_AsDouble:PyObject*:pylong:0:
/third_party/python/PC/
Dpython3dll.c320 EXPORT_FUNC(PyLong_AsDouble)
/third_party/python/Misc/
Dstable_abi.txt826 function PyLong_AsDouble
DHISTORY24382 - Note that PyLong_AsDouble can fail! This has always been true, but no
24386 double x = PyLong_AsDouble(some_long_object);
/third_party/flutter/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c3168 double v = PyLong_AsDouble(obj); in SWIG_AsVal_double()
/third_party/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c3189 double v = PyLong_AsDouble(obj); in SWIG_AsVal_double()
/third_party/python/Misc/NEWS.d/
D3.6.0a1.rst824 Optimize PyLong_AsDouble.