| /external/python/cpython2/Modules/_sqlite/ | 
| D | util.c | 145     long value = PyLong_AsLongAndOverflow(py_val, &overflow);  in _pysqlite_long_as_int64()
  | 
| D | connection.c | 1380     longval = PyLong_AsLongAndOverflow(retval, &result);  in pysqlite_collation_callback()
  | 
| /external/python/cpython2/Include/ | 
| D | longobject.h | 24 PyAPI_FUNC(long) PyLong_AsLongAndOverflow(PyObject *, int *);
  | 
| /external/python/cpython2/Modules/ | 
| D | _testcapimodule.c | 579     value = PyLong_AsLongAndOverflow(num, &overflow);  in test_long_and_overflow() 606     value = PyLong_AsLongAndOverflow(num, &overflow);  in test_long_and_overflow() 623     value = PyLong_AsLongAndOverflow(num, &overflow);  in test_long_and_overflow() 650     value = PyLong_AsLongAndOverflow(num, &overflow);  in test_long_and_overflow() 666     value = PyLong_AsLongAndOverflow(num, &overflow);  in test_long_and_overflow() 681     value = PyLong_AsLongAndOverflow(num, &overflow);  in test_long_and_overflow() 696     value = PyLong_AsLongAndOverflow(num, &overflow);  in test_long_and_overflow() 711     value = PyLong_AsLongAndOverflow(num, &overflow);  in test_long_and_overflow()
  | 
| D | mathmodule.c | 1194         exp = PyLong_AsLongAndOverflow(oexp, &overflow);  in math_ldexp()
  | 
| /external/python/cpython3/Include/ | 
| D | longobject.h | 24 PyAPI_FUNC(long) PyLong_AsLongAndOverflow(PyObject *, int *);
  | 
| /external/python/cpython3/Modules/ | 
| D | mathmodule.c | 2067     x = PyLong_AsLongAndOverflow(arg, &overflow);  in math_factorial() 2192         exp = PyLong_AsLongAndOverflow(i, &overflow);  in math_ldexp_impl() 3098         long i_result = PyLong_AsLongAndOverflow(result, &overflow);  in math_prod_impl() 3116                 long b = PyLong_AsLongAndOverflow(item, &overflow);  in math_prod_impl() 3168                 value = PyLong_AsLongAndOverflow(item, &overflow);  in math_prod_impl()
  | 
| D | _cursesmodule.c | 267         value = PyLong_AsLongAndOverflow(obj, &long_overflow);  in PyCurses_ConvertToChtype() 332         value = PyLong_AsLongAndOverflow(obj, &overflow);  in PyCurses_ConvertToCchar_t() 408     color_number = PyLong_AsLongAndOverflow(arg, &overflow);  in color_allow_default_converter() 460     pair_number = PyLong_AsLongAndOverflow(arg, &overflow);  in pair_converter() 502     component = PyLong_AsLongAndOverflow(arg, &overflow);  in component_converter() 4458         value = PyLong_AsLongAndOverflow(obj, &overflow);  in PyCurses_ConvertToWchar_t()
  | 
| D | _testcapimodule.c | 561     value = PyLong_AsLongAndOverflow(num, &overflow);  in test_long_and_overflow() 588     value = PyLong_AsLongAndOverflow(num, &overflow);  in test_long_and_overflow() 605     value = PyLong_AsLongAndOverflow(num, &overflow);  in test_long_and_overflow() 632     value = PyLong_AsLongAndOverflow(num, &overflow);  in test_long_and_overflow() 648     value = PyLong_AsLongAndOverflow(num, &overflow);  in test_long_and_overflow() 663     value = PyLong_AsLongAndOverflow(num, &overflow);  in test_long_and_overflow() 678     value = PyLong_AsLongAndOverflow(num, &overflow);  in test_long_and_overflow() 693     value = PyLong_AsLongAndOverflow(num, &overflow);  in test_long_and_overflow()
  | 
| /external/python/cpython3/Python/ | 
| D | bltinmodule.c | 2457         long i_result = PyLong_AsLongAndOverflow(result, &overflow);  in builtin_sum_impl() 2472                 long b = PyLong_AsLongAndOverflow(item, &overflow);  in builtin_sum_impl() 2520                 value = PyLong_AsLongAndOverflow(item, &overflow);  in builtin_sum_impl()
  | 
| D | traceback.c | 612         limit = PyLong_AsLongAndOverflow(limitv, &overflow);  in PyTraceBack_Print()
  | 
| D | marshal.c | 379         long x = PyLong_AsLongAndOverflow(v, &overflow);  in w_complex_object()
  | 
| /external/python/cpython2/Doc/c-api/ | 
| D | long.rst | 136 .. c:function:: long PyLong_AsLongAndOverflow(PyObject *pylong, int *overflow)
  | 
| /external/python/cpython2/Misc/NEWS.d/ | 
| D | 2.7a2.rst | 347 ``PyLong_AsLongAndOverflow()``.
  | 
| /external/python/cpython3/Doc/c-api/ | 
| D | long.rst | 134 .. c:function:: long PyLong_AsLongAndOverflow(PyObject *obj, int *overflow)
  | 
| /external/python/cpython3/Objects/ | 
| D | frameobject.c | 394     long l_new_lineno = PyLong_AsLongAndOverflow(p_new_lineno, &overflow);  in frame_setlineno()
  | 
| D | exceptions.c | 1621                    PyLong_AsLongAndOverflow(self->lineno, &overflow));  in SyntaxError_str() 1629                    PyLong_AsLongAndOverflow(self->lineno, &overflow));  in SyntaxError_str()
  | 
| D | longobject.c | 370 PyLong_AsLongAndOverflow(PyObject *vv, int *overflow)  in PyLong_AsLongAndOverflow()  function 452     long result = PyLong_AsLongAndOverflow(obj, &overflow);  in PyLong_AsLong() 469     long result = PyLong_AsLongAndOverflow(obj, &overflow);  in _PyLong_AsInt()
  | 
| D | bytearrayobject.c | 25     long face_value = PyLong_AsLongAndOverflow(arg, &overflow);  in _getbytevalue()
  | 
| /external/python/cpython3/PC/ | 
| D | python3dll.c | 322 EXPORT_FUNC(PyLong_AsLongAndOverflow)
  | 
| /external/python/cpython3/Doc/data/ | 
| D | stable_abi.dat | 339 function,PyLong_AsLongAndOverflow,3.2,
  | 
| D | refcounts.dat | 1155 PyLong_AsLongAndOverflow:long::: 1156 PyLong_AsLongAndOverflow:PyObject*:obj:0: 1157 PyLong_AsLongAndOverflow:int*:overflow::
  | 
| /external/python/cpython2/Objects/ | 
| D | longobject.c | 232 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()
  | 
| D | bytesobject.c | 505             ival = PyLong_AsLongAndOverflow(arg, &overflow);  in byte_converter() 514             ival = PyLong_AsLongAndOverflow(iobj, &overflow);  in byte_converter()
  | 
| /external/python/cpython3/Modules/_sqlite/ | 
| D | connection.c | 1552     longval = PyLong_AsLongAndOverflow(retval, &result);  in pysqlite_collation_callback()
  |