Home
last modified time | relevance | path

Searched refs:INT_MIN (Results 1 – 25 of 25) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dasdl.c11 if (size < 0 || size == INT_MIN || in asdl_seq_new()
42 if (size < 0 || size == INT_MIN || in asdl_int_seq_new()
Dstructmember.c254 if ((long_val > INT_MAX) || (long_val < INT_MIN)) in PyMember_SetOne()
Dgetargs.c696 else if (ival < INT_MIN) { in convertsimple()
Dcompile.c3520 b->b_startdepth = INT_MIN; in stackdepth()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dasdl.c11 if (size < 0 || size == INT_MIN || in asdl_seq_new()
42 if (size < 0 || size == INT_MIN || in asdl_int_seq_new()
Dstructmember.c254 if ((long_val > INT_MAX) || (long_val < INT_MIN)) in PyMember_SetOne()
Dgetargs.c696 else if (ival < INT_MIN) { in convertsimple()
Dcompile.c3496 b->b_startdepth = INT_MIN; in stackdepth()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_structmembers.py4 INT_MAX, INT_MIN, UINT_MAX, \
42 ts.T_INT = INT_MIN
43 self.assertEqual(ts.T_INT, INT_MIN)
Dtest_getargs2.py42 INT_MIN, LONG_MIN, LONG_MAX, PY_SSIZE_T_MIN, PY_SSIZE_T_MAX, \
168 self.assertRaises(OverflowError, getargs_i, INT_MIN-1)
169 self.assertEqual(INT_MIN, getargs_i(INT_MIN))
/device/linaro/bootloader/edk2/StdLib/Include/
Dlimits.h67 #define INT_MIN __INT_MIN macro
/device/linaro/bootloader/arm-trusted-firmware/include/stdlib/sys/
Dlimits.h59 #define INT_MIN __INT_MIN /* min value for an int */ macro
/device/google/contexthub/firmware/os/inc/
Dutil.h55 return INT_MIN; in LOG2_FLOOR()
/device/linaro/bootloader/edk2/CryptoPkg/Include/
DOpenSslSupport.h78 #define INT_MIN (-2147483647-1) /* min value for an int */ macro
/device/linaro/bootloader/edk2/AppPkg/Applications/OrderedCollectionTest/
DOrderedCollectionTest.c629 Value < INT_MIN || Value > INT_MAX // parsed long not in int range in main()
/device/linaro/bootloader/edk2/AppPkg/Applications/Enquire/
DEnquire.c1630 #ifdef INT_MIN
1631 checktype(INT_MIN, "INT_MIN", Signed, int);
2325 #ifdef INT_MIN
2326 #define I_MIN INT_MIN
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dmathmodule.c1216 } else if (exp < INT_MIN) { in math_ldexp()
D_struct.c568 if ((x < ((long)INT_MIN)) || (x > ((long)INT_MAX))) in np_int()
D_json.c9 #define PY_SSIZE_T_MIN INT_MIN
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dmathmodule.c1216 } else if (exp < INT_MIN) { in math_ldexp()
D_testcapimodule.c1878 PyModule_AddObject(m, "INT_MIN", PyLong_FromLong(INT_MIN)); in init_testcapi()
D_struct.c568 if ((x < ((long)INT_MIN)) || (x > ((long)INT_MAX))) in np_int()
D_json.c9 #define PY_SSIZE_T_MIN INT_MIN
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dintobject.c198 if (result > INT_MAX || result < INT_MIN) { in _PyInt_AsInt()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
Dlongobject.c362 if (overflow || result > INT_MAX || result < INT_MIN) { in _PyLong_AsInt()