Home
last modified time | relevance | path

Searched refs:PyNumber_Int (Results 1 – 18 of 18) sorted by relevance

/external/tensorflow/tensorflow/python/lib/core/
Dpy_seq_tensor.cc344 Safe_PyObjectPtr as_int = make_safe(PyNumber_Int(v)); in ConvertScalar()
381 Safe_PyObjectPtr as_int = make_safe(PyNumber_Int(v)); in ConvertScalar()
419 Safe_PyObjectPtr as_int = make_safe(PyNumber_Int(v)); in ConvertScalar()
489 Safe_PyObjectPtr as_int = make_safe(PyNumber_Int(v)); in ConvertOneFloat()
/external/python/cpython2/Modules/
Dgrpmodule.c92 py_int_id = PyNumber_Int(pyo_id); in grp_getgrgid()
Dselectmodule.c524 tout = PyNumber_Int(tout); in poll_poll()
D_tkinter.c2135 PyObject *resint = PyNumber_Int(result); in Tkapp_GetInt()
/external/python/cpython2/PC/os2vacpp/
Dpython.def285 PyNumber_Int
/external/python/cpython2/Include/
Dabstract.h883 PyAPI_FUNC(PyObject *) PyNumber_Int(PyObject *o);
/external/python/cpython2/Objects/
Dweakrefobject.c512 WRAP_UNARY(proxy_int, PyNumber_Int) in WRAP_BINARY()
Dfloatobject.c1777 INPLACE_UPDATE(numerator, PyNumber_Int(numerator)); in float_as_integer_ratio()
1779 INPLACE_UPDATE(denominator, PyNumber_Int(denominator)); in float_as_integer_ratio()
Dintobject.c1081 return PyNumber_Int(x); in int_new()
Dabstract.c1608 PyNumber_Int(PyObject *o) function
Dstringobject.c4512 iobj = PyNumber_Int(v); in PyString_Format()
Dunicodeobject.c8636 iobj = PyNumber_Int(v); in PyUnicode_Format()
/external/python/cpython2/PC/os2emx/
Dpython27.def100 "PyNumber_Int"
/external/python/cpython2/Doc/c-api/
Dnumber.rst260 .. c:function:: PyObject* PyNumber_Int(PyObject *o)
/external/python/cpython2/Doc/data/
Drefcounts.dat858 PyNumber_Int:PyObject*::+1:
859 PyNumber_Int:PyObject*:o:0:
/external/python/cpython3/Doc/whatsnew/
D3.1.rst503 * Deprecated :c:func:`PyNumber_Int`. Use :c:func:`PyNumber_Long` instead.
/external/python/cffi/c/
D_cffi_backend.c2195 PyObject *r = o ? PyNumber_Int(o) : NULL; in cdata_int()
/external/python/cpython3/Misc/
DHISTORY15277 - Issue #4910: Builtin int() function and PyNumber_Long/PyNumber_Int API