Home
last modified time | relevance | path

Searched refs:PY_LLONG_MIN (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Modules/_io/
D_iomodule.h106 # define PY_OFF_T_MIN PY_LLONG_MIN
125 # define PY_OFF_T_MIN PY_LLONG_MIN
/external/python/cpython2/PC/
Dpyconfig.h287 #define PY_LLONG_MIN LLONG_MIN macro
316 # define PY_LLONG_MIN _I64_MIN macro
/external/python/cpython2/Include/
Dpyport.h72 #define PY_LLONG_MIN LLONG_MIN macro
78 #define PY_LLONG_MIN (-PY_LLONG_MAX-1) macro
84 #define PY_LLONG_MIN (-PY_LLONG_MAX-1) macro
/external/python/cpython2/Modules/_sqlite/
Dutil.c118 if (value > PY_LLONG_MAX || value < PY_LLONG_MIN) { in _pysqlite_long_from_int64()
/external/python/cpython2/Modules/
D_testcapimodule.c794 num = PyLong_FromLongLong(PY_LLONG_MIN); in test_long_long_and_overflow()
866 num = PyLong_FromLongLong(PY_LLONG_MIN); in test_long_long_and_overflow()
874 if (value != PY_LLONG_MIN) in test_long_long_and_overflow()
2786 PyModule_AddObject(m, "LLONG_MIN", PyLong_FromLongLong(PY_LLONG_MIN)); in init_testcapi()
/external/python/cpython2/Doc/c-api/
Dlong.rst153 than :const:`PY_LLONG_MIN`, set *\*overflow* to ``1`` or ``-1``,
/external/python/cpython2/Objects/
Dlongobject.c841 #define PY_ABS_LLONG_MIN (0-(unsigned PY_LONG_LONG)PY_LLONG_MIN)
1129 res = PY_LLONG_MIN; in PyLong_AsLongLongAndOverflow()