Home
last modified time | relevance | path

Searched refs:PY_LLONG_MIN (Results 1 – 14 of 14) 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/cpython3/PC/
Dpyconfig.h243 #define PY_LLONG_MIN LLONG_MIN macro
271 # define PY_LLONG_MIN _I64_MIN macro
/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/cpython3/Modules/_sqlite/
Dutil.c117 if (value > PY_LLONG_MAX || value < PY_LLONG_MIN) { in _pysqlite_long_from_int64()
/external/python/cpython2/Modules/_sqlite/
Dutil.c118 if (value > PY_LLONG_MAX || value < PY_LLONG_MIN) { in _pysqlite_long_from_int64()
/external/python/cpython3/Include/
Dpytime.h20 #define _PyTime_MIN PY_LLONG_MIN
Dpyport.h47 #define PY_LLONG_MIN LLONG_MIN macro
/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/cpython3/Modules/
D_testcapimodule.c695 num = PyLong_FromLongLong(PY_LLONG_MIN); in test_long_long_and_overflow()
767 num = PyLong_FromLongLong(PY_LLONG_MIN); in test_long_long_and_overflow()
775 if (value != PY_LLONG_MIN) in test_long_long_and_overflow()
4634 PyModule_AddObject(m, "LLONG_MIN", PyLong_FromLongLong(PY_LLONG_MIN)); in PyInit__testcapi()
/external/python/cpython3/Doc/c-api/
Dlong.rst171 :const:`PY_LLONG_MIN`, set *\*overflow* to ``1`` or ``-1``, respectively,
/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()
/external/python/cpython3/Objects/
Dlongobject.c1039 #define PY_ABS_LLONG_MIN (0-(unsigned long long)PY_LLONG_MIN)
1399 res = PY_LLONG_MIN; in PyLong_AsLongLongAndOverflow()