Home
last modified time | relevance | path

Searched refs:PyLong_AsLongAndOverflow (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Include/
Dlongobject.h24 PyAPI_FUNC(long) PyLong_AsLongAndOverflow(PyObject *, int *);
/external/python/cpython2/Modules/_sqlite/
Dutil.c145 long value = PyLong_AsLongAndOverflow(py_val, &overflow); in _pysqlite_long_as_int64()
Dconnection.c1380 longval = PyLong_AsLongAndOverflow(retval, &result); in pysqlite_collation_callback()
/external/python/cpython2/Modules/
D_testcapimodule.c573 value = PyLong_AsLongAndOverflow(num, &overflow); in test_long_and_overflow()
600 value = PyLong_AsLongAndOverflow(num, &overflow); in test_long_and_overflow()
617 value = PyLong_AsLongAndOverflow(num, &overflow); in test_long_and_overflow()
644 value = PyLong_AsLongAndOverflow(num, &overflow); in test_long_and_overflow()
660 value = PyLong_AsLongAndOverflow(num, &overflow); in test_long_and_overflow()
675 value = PyLong_AsLongAndOverflow(num, &overflow); in test_long_and_overflow()
690 value = PyLong_AsLongAndOverflow(num, &overflow); in test_long_and_overflow()
705 value = PyLong_AsLongAndOverflow(num, &overflow); in test_long_and_overflow()
Dmathmodule.c1194 exp = PyLong_AsLongAndOverflow(oexp, &overflow); in math_ldexp()
D_tkinter.c1108 longValue = PyLong_AsLongAndOverflow(value, &overflow); in AsObj()
Dposixmodule.c381 result = PyLong_AsLongAndOverflow(obj, &overflow); in _Py_Uid_Converter()
433 result = PyLong_AsLongAndOverflow(obj, &overflow); in _Py_Gid_Converter()
/external/python/cpython2/Doc/c-api/
Dlong.rst136 .. c:function:: long PyLong_AsLongAndOverflow(PyObject *pylong, int *overflow)
/external/python/cpython2/Objects/
Dlongobject.c232 PyLong_AsLongAndOverflow(PyObject *vv, int *overflow) in PyLong_AsLongAndOverflow() function
332 long result = PyLong_AsLongAndOverflow(obj, &overflow); in PyLong_AsLong()
349 long result = PyLong_AsLongAndOverflow(obj, &overflow); in _PyLong_AsInt()
/external/python/cpython2/Doc/whatsnew/
D2.7.rst195 * The :c:func:`PyLong_AsLongAndOverflow` C API function.
2121 * New functions: :c:func:`PyLong_AsLongAndOverflow` and
/external/python/cpython2/Misc/
DNEWS7214 to ``PyLong_AsLongAndOverflow()``.
8844 - Issue #7528: Add PyLong_AsLongAndOverflow (backported from py3k).