Searched refs:INT_MIN (Results 1 – 25 of 25) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | asdl.c | 11 if (size < 0 || size == INT_MIN || in asdl_seq_new() 42 if (size < 0 || size == INT_MIN || in asdl_int_seq_new()
|
D | structmember.c | 254 if ((long_val > INT_MAX) || (long_val < INT_MIN)) in PyMember_SetOne()
|
D | getargs.c | 696 else if (ival < INT_MIN) { in convertsimple()
|
D | compile.c | 3520 b->b_startdepth = INT_MIN; in stackdepth()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | asdl.c | 11 if (size < 0 || size == INT_MIN || in asdl_seq_new() 42 if (size < 0 || size == INT_MIN || in asdl_int_seq_new()
|
D | structmember.c | 254 if ((long_val > INT_MAX) || (long_val < INT_MIN)) in PyMember_SetOne()
|
D | getargs.c | 696 else if (ival < INT_MIN) { in convertsimple()
|
D | compile.c | 3496 b->b_startdepth = INT_MIN; in stackdepth()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_structmembers.py | 4 INT_MAX, INT_MIN, UINT_MAX, \ 42 ts.T_INT = INT_MIN 43 self.assertEqual(ts.T_INT, INT_MIN)
|
D | test_getargs2.py | 42 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/ |
D | limits.h | 67 #define INT_MIN __INT_MIN macro
|
/device/linaro/bootloader/arm-trusted-firmware/include/stdlib/sys/ |
D | limits.h | 59 #define INT_MIN __INT_MIN /* min value for an int */ macro
|
/device/google/contexthub/firmware/os/inc/ |
D | util.h | 55 return INT_MIN; in LOG2_FLOOR()
|
/device/linaro/bootloader/edk2/CryptoPkg/Include/ |
D | OpenSslSupport.h | 78 #define INT_MIN (-2147483647-1) /* min value for an int */ macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/OrderedCollectionTest/ |
D | OrderedCollectionTest.c | 629 Value < INT_MIN || Value > INT_MAX // parsed long not in int range in main()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Enquire/ |
D | Enquire.c | 1630 #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.2/Modules/ |
D | mathmodule.c | 1216 } else if (exp < INT_MIN) { in math_ldexp()
|
D | _testcapimodule.c | 1878 PyModule_AddObject(m, "INT_MIN", PyLong_FromLong(INT_MIN)); in init_testcapi()
|
D | _struct.c | 568 if ((x < ((long)INT_MIN)) || (x > ((long)INT_MAX))) in np_int()
|
D | _json.c | 9 #define PY_SSIZE_T_MIN INT_MIN
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | mathmodule.c | 1216 } else if (exp < INT_MIN) { in math_ldexp()
|
D | _struct.c | 568 if ((x < ((long)INT_MIN)) || (x > ((long)INT_MAX))) in np_int()
|
D | _json.c | 9 #define PY_SSIZE_T_MIN INT_MIN
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | intobject.c | 198 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/ |
D | longobject.c | 362 if (overflow || result > INT_MAX || result < INT_MIN) { in _PyLong_AsInt()
|