Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Dcgensupport.c76 *p_arg = PyLong_AsDouble(v); in extractdouble()
97 *p_arg = (float) PyLong_AsDouble(v); in extractfloat()
Dmathmodule.c1289 x = PyLong_AsDouble(arg); in loghelper()
Ddatetimemodule.c1909 dnum = PyLong_AsDouble(factor); in accum()
/external/python/cpython2/Include/
Dlongobject.h45 PyAPI_FUNC(double) PyLong_AsDouble(PyObject *);
/external/python/cpython3/Include/
Dlongobject.h84 PyAPI_FUNC(double) PyLong_AsDouble(PyObject *);
/external/python/cpython2/PC/os2vacpp/
Dpython.def232 PyLong_AsDouble
/external/python/cpython2/Objects/
Dfloatobject.c318 *dbl = PyLong_AsDouble(obj); in convert_to_double()
498 j = PyLong_AsDouble(w); in float_richcompare()
968 double x = PyLong_AsDouble(*pw); in float_coerce()
Dcomplexobject.c502 pc->real = PyLong_AsDouble(obj); in to_complex()
766 cval.real = PyLong_AsDouble(*pw); in complex_coerce()
Dlongobject.c2330 PyLong_AsDouble(PyObject *v) in PyLong_AsDouble() function
3987 result = PyLong_AsDouble(v); in long_float()
/external/python/cpython2/Doc/c-api/
Dlong.rst231 .. c:function:: double PyLong_AsDouble(PyObject *pylong)
/external/tensorflow/tensorflow/python/lib/core/
Dpy_seq_tensor.cc383 *out = PyLong_AsDouble(v); in ConvertOneFloat()
/external/python/cpython3/PC/
Dpython3.def316 PyLong_AsDouble=python37.PyLong_AsDouble
/external/python/cpython3/Objects/
Dfloatobject.c301 *dbl = PyLong_AsDouble(obj); in convert_to_double()
404 j = PyLong_AsDouble(w); in float_richcompare()
Dcomplexobject.c444 pc->real = PyLong_AsDouble(obj); in to_complex()
Dlongobject.c2862 PyLong_AsDouble(PyObject *v) in PyLong_AsDouble() function
4777 result = PyLong_AsDouble(v); in long_float()
/external/python/cpython3/Doc/c-api/
Dlong.rst277 .. c:function:: double PyLong_AsDouble(PyObject *pylong)
/external/python/cpython2/PC/os2emx/
Dpython27.def400 "PyLong_AsDouble"
/external/python/cpython2/Doc/data/
Drefcounts.dat635 PyLong_AsDouble:double:::
636 PyLong_AsDouble:PyObject*:pylong:0:
/external/python/cpython3/Modules/
Dmathmodule.c1901 x = PyLong_AsDouble(arg); in loghelper()
D_testcapimodule.c830 out = PyLong_AsDouble(Py_None); in test_long_as_double()
D_datetimemodule.c2380 dnum = PyLong_AsDouble(factor); in accum()
/external/python/cpython3/Doc/data/
Drefcounts.dat1113 PyLong_AsDouble:double:::
1114 PyLong_AsDouble:PyObject*:pylong:0:
/external/python/cpython3/Misc/NEWS.d/
D3.6.0a1.rst824 Optimize PyLong_AsDouble.
/external/python/cpython2/Misc/
DHISTORY7003 - Note that PyLong_AsDouble can fail! This has always been true, but no
7007 double x = PyLong_AsDouble(some_long_object);
/external/python/cpython3/Misc/
DHISTORY24382 - Note that PyLong_AsDouble can fail! This has always been true, but no
24386 double x = PyLong_AsDouble(some_long_object);