Searched refs:PY_LLONG_MIN (Results 1 - 12 of 12) sorted by relevance

/external/python/cpython2/Modules/_io/
H A D_iomodule.h106 # define PY_OFF_T_MIN PY_LLONG_MIN
125 # define PY_OFF_T_MIN PY_LLONG_MIN
/external/python/cpython2/PC/
H A Dpyconfig.h287 #define PY_LLONG_MIN LLONG_MIN macro
316 # define PY_LLONG_MIN _I64_MIN macro
/external/python/cpython3/PC/
H A Dpyconfig.h243 #define PY_LLONG_MIN LLONG_MIN macro
271 # define PY_LLONG_MIN _I64_MIN macro
/external/python/cpython2/Modules/_sqlite/
H A Dutil.c118 if (value > PY_LLONG_MAX || value < PY_LLONG_MIN) {
/external/python/cpython3/Modules/_sqlite/
H A Dutil.c117 if (value > PY_LLONG_MAX || value < PY_LLONG_MIN) {
/external/python/cpython3/Include/
H A Dpytime.h20 #define _PyTime_MIN PY_LLONG_MIN
H A Dpyport.h47 #define PY_LLONG_MIN LLONG_MIN macro
/external/python/cpython2/Include/
H A 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/
H A D_testcapimodule.c777 /* num is a number smaller than PY_LLONG_MIN on a typical platform */
793 /* Same again, with num = PY_LLONG_MIN - 1 */
794 num = PyLong_FromLongLong(PY_LLONG_MIN);
866 num = PyLong_FromLongLong(PY_LLONG_MIN);
874 if (value != PY_LLONG_MIN)
876 "expected return value PY_LLONG_MIN");
2786 PyModule_AddObject(m, "LLONG_MIN", PyLong_FromLongLong(PY_LLONG_MIN));
/external/python/cpython3/Modules/
H A D_testcapimodule.c678 /* num is a number smaller than PY_LLONG_MIN on a typical platform */
694 /* Same again, with num = PY_LLONG_MIN - 1 */
695 num = PyLong_FromLongLong(PY_LLONG_MIN);
767 num = PyLong_FromLongLong(PY_LLONG_MIN);
775 if (value != PY_LLONG_MIN)
777 "expected return value PY_LLONG_MIN");
4634 PyModule_AddObject(m, "LLONG_MIN", PyLong_FromLongLong(PY_LLONG_MIN));
/external/python/cpython2/Objects/
H A Dlongobject.c841 #define PY_ABS_LLONG_MIN (0-(unsigned PY_LONG_LONG)PY_LLONG_MIN)
1129 res = PY_LLONG_MIN;
/external/python/cpython3/Objects/
H A Dlongobject.c1039 #define PY_ABS_LLONG_MIN (0-(unsigned long long)PY_LLONG_MIN)
1399 res = PY_LLONG_MIN;

Completed in 560 milliseconds