/external/python/cpython3/Modules/_testlimitedcapi/ |
D | long.c | 137 value = PyLong_AsLongAndOverflow(num, &overflow); in _testlimitedcapi_test_long_and_overflow_impl() 164 value = PyLong_AsLongAndOverflow(num, &overflow); in _testlimitedcapi_test_long_and_overflow_impl() 181 value = PyLong_AsLongAndOverflow(num, &overflow); in _testlimitedcapi_test_long_and_overflow_impl() 207 value = PyLong_AsLongAndOverflow(num, &overflow); in _testlimitedcapi_test_long_and_overflow_impl() 223 value = PyLong_AsLongAndOverflow(num, &overflow); in _testlimitedcapi_test_long_and_overflow_impl() 238 value = PyLong_AsLongAndOverflow(num, &overflow); in _testlimitedcapi_test_long_and_overflow_impl() 253 value = PyLong_AsLongAndOverflow(num, &overflow); in _testlimitedcapi_test_long_and_overflow_impl() 268 value = PyLong_AsLongAndOverflow(num, &overflow); in _testlimitedcapi_test_long_and_overflow_impl() 626 long value = PyLong_AsLongAndOverflow(arg, &overflow); in pylong_aslongandoverflow()
|
/external/python/cpython3/Include/ |
D | longobject.h | 23 PyAPI_FUNC(long) PyLong_AsLongAndOverflow(PyObject *, int *); 52 long result = PyLong_AsLongAndOverflow(obj, &overflow); in PyLong_AsPid()
|
/external/pytorch/torch/csrc/utils/ |
D | python_numbers.h | 61 long value = PyLong_AsLongAndOverflow(obj, &overflow); in THPUtils_unpackInt() 193 long value = PyLong_AsLongAndOverflow(obj, &overflow); in THPUtils_unpackDeviceIndex()
|
/external/python/cpython3/Modules/ |
D | mathmodule.c | 2024 x = PyLong_AsLongAndOverflow(arg, &overflow); in math_factorial() 2144 exp = PyLong_AsLongAndOverflow(i, &overflow); in math_ldexp_impl() 2823 int_p = PyLong_AsLongAndOverflow(p_i, &overflow); in math_sumprod_impl() 2827 int_q = PyLong_AsLongAndOverflow(q_i, &overflow); in math_sumprod_impl() 3293 long i_result = PyLong_AsLongAndOverflow(result, &overflow); in math_prod_impl() 3310 long b = PyLong_AsLongAndOverflow(item, &overflow); in math_prod_impl() 3361 value = PyLong_AsLongAndOverflow(item, &overflow); in math_prod_impl()
|
D | _cursesmodule.c | 269 value = PyLong_AsLongAndOverflow(obj, &long_overflow); in PyCurses_ConvertToChtype() 334 value = PyLong_AsLongAndOverflow(obj, &overflow); in PyCurses_ConvertToCchar_t() 410 color_number = PyLong_AsLongAndOverflow(arg, &overflow); in color_allow_default_converter() 462 pair_number = PyLong_AsLongAndOverflow(arg, &overflow); in pair_converter() 504 component = PyLong_AsLongAndOverflow(arg, &overflow); in component_converter() 4460 value = PyLong_AsLongAndOverflow(obj, &overflow); in PyCurses_ConvertToWchar_t()
|
D | posixmodule.c | 787 result = PyLong_AsLongAndOverflow(index, &overflow); in _Py_Uid_Converter() 893 result = PyLong_AsLongAndOverflow(index, &overflow); in _Py_Gid_Converter() 1049 long_value = PyLong_AsLongAndOverflow(index, &overflow); in _fd_converter() 1608 signum = PyLong_AsLongAndOverflow(item, &overflow); in _Py_Sigset_Converter()
|
D | _tkinter.c | 962 longValue = PyLong_AsLongAndOverflow(value, &overflow); in AsObj()
|
/external/python/cpython3/Objects/ |
D | rangeobject.c | 187 long long_start = PyLong_AsLongAndOverflow(start, &overflow); in compute_range_length_long() 194 long long_stop = PyLong_AsLongAndOverflow(stop, &overflow); in compute_range_length_long() 201 long long_step = PyLong_AsLongAndOverflow(step, &overflow); in compute_range_length_long()
|
D | exceptions.c | 2525 PyLong_AsLongAndOverflow(self->lineno, &overflow)); in SyntaxError_str() 2533 PyLong_AsLongAndOverflow(self->lineno, &overflow)); in SyntaxError_str()
|
D | longobject.c | 460 PyLong_AsLongAndOverflow(PyObject *vv, int *overflow) in PyLong_AsLongAndOverflow() function 544 long result = PyLong_AsLongAndOverflow(obj, &overflow); in PyLong_AsLong() 561 long result = PyLong_AsLongAndOverflow(obj, &overflow); in PyLong_AsInt()
|
D | frameobject.c | 1530 long l_new_lineno = PyLong_AsLongAndOverflow(p_new_lineno, &overflow); in frame_setlineno()
|
D | bytearrayobject.c | 27 long face_value = PyLong_AsLongAndOverflow(arg, &overflow); in _getbytevalue()
|
D | bytesobject.c | 490 long ival = PyLong_AsLongAndOverflow(arg, &overflow); in byte_converter()
|
/external/python/cpython3/Python/ |
D | bltinmodule.c | 714 long v = PyLong_AsLongAndOverflow(i, &overflow); in builtin_chr() 2580 Py_ssize_t i_result = PyLong_AsLongAndOverflow(result, &overflow); in builtin_sum_impl() 2601 b = PyLong_AsLongAndOverflow(item, &overflow); in builtin_sum_impl() 2668 value = PyLong_AsLongAndOverflow(item, &overflow); in builtin_sum_impl()
|
D | traceback.c | 725 limit = PyLong_AsLongAndOverflow(limitv, &overflow); in _PyTraceBack_Print()
|
D | marshal.c | 401 long x = PyLong_AsLongAndOverflow(v, &overflow); in w_complex_object()
|
/external/python/cpython3/PC/ |
D | python3dll.c | 344 EXPORT_FUNC(PyLong_AsLongAndOverflow)
|
/external/python/cpython3/Doc/data/ |
D | stable_abi.dat | 359 func,PyLong_AsLongAndOverflow,3.2,,
|
D | refcounts.dat | 1218 PyLong_AsLongAndOverflow:long::: 1219 PyLong_AsLongAndOverflow:PyObject*:obj:0: 1220 PyLong_AsLongAndOverflow:int*:overflow::
|
/external/python/cpython3/Doc/c-api/ |
D | long.rst | 182 .. c:function:: long PyLong_AsLongAndOverflow(PyObject *obj, int *overflow)
|
/external/python/cpython3/Modules/_sqlite/ |
D | connection.c | 1931 longval = PyLong_AsLongAndOverflow(retval, &result); in collation_callback()
|
/external/tensorflow/tensorflow/python/lib/core/ |
D | bfloat16.cc | 51 PyLong_AsLongAndOverflow(object, &overflow); in PyLong_CheckNoOverflow()
|
/external/python/cpython3/Modules/_io/ |
D | bufferedio.c | 876 int myerrno = PyLong_AsLongAndOverflow(env_err->myerrno, &overflow); in _PyIO_trap_eintr()
|
/external/python/cpython3/Misc/ |
D | stable_abi.toml | 935 [function.PyLong_AsLongAndOverflow]
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.7.rst | 195 * The :c:func:`PyLong_AsLongAndOverflow` C API function. 2150 * New functions: :c:func:`PyLong_AsLongAndOverflow` and
|