/external/clang/test/Analysis/ |
D | switch-case.c | 7 #define INT_MAX 0x7fffffff macro 82 case 10 ... INT_MAX: in testDefaultUnreachable() 112 case 26 ... INT_MAX: in testBranchReachability() 128 case 20 ... INT_MAX: in testDefaultBranchRange() 149 case 20 ... INT_MAX: in testAllUnreachableButDefault() 168 case 20 ... INT_MAX: in testAllUnreachable()
|
D | additive-folding-range-constraints.c | 6 #define INT_MAX (UINT_MAX & (UINT_MAX >> 1)) macro 7 #define INT_MIN (-INT_MAX - 1) 165 int max = INT_MAX; in mixedComparisons9() 190 int max = INT_MAX; in mixedSignedness3() 197 int max = INT_MAX; in mixedSignedness4() 260 unsigned max = INT_MAX; in mixedSignedness13() 267 unsigned max = INT_MAX; in mixedSignedness14() 288 unsigned max = INT_MAX; in mixedSignedness17() 294 clang_analyzer_eval(a == INT_MAX); // expected-warning{{UNKNOWN}} in mixedSignedness17()
|
D | additive-folding.cpp | 6 #define INT_MAX (UINT_MAX & (UINT_MAX >> 1)) macro 7 #define INT_MIN (-INT_MAX - 1) 145 int max = INT_MAX; in mixedWraparoundSanityCheck() 153 int max = INT_MAX; in mixedWraparoundLE_GT() 162 int max = INT_MAX; in mixedWraparoundGE_LT() 171 int max = INT_MAX; in mixedWraparoundEQ_NE()
|
/external/llvm/include/llvm/CodeGen/ |
D | WinEHFuncInfo.h | 102 int UnwindHelpFrameIdx = INT_MAX; 103 int PSPSymFrameIdx = INT_MAX; 110 int EHRegNodeFrameIndex = INT_MAX; 111 int EHRegNodeEndOffset = INT_MAX; 112 int EHGuardFrameIndex = INT_MAX; 113 int SEHSetFrameOffset = INT_MAX;
|
/external/bison/src/ |
D | location.c | 40 unsigned int remaining_columns = INT_MAX - column; in add_column_width() 44 if (INT_MAX / 2 <= bufsize) in add_column_width() 45 return INT_MAX; in add_column_width() 51 return width <= remaining_columns ? column + width : INT_MAX; in add_column_width() 72 line += line < INT_MAX; in location_compute() 92 if (line == INT_MAX && loc->start.line != INT_MAX) in location_compute() 94 if (column == INT_MAX && loc->start.column != INT_MAX) in location_compute()
|
/external/libchrome/base/strings/ |
D | string_number_conversions_unittest.cc | 77 {INT_MAX, "2147483647"}, in TEST() 96 {INT_MAX, "2147483647"}, in TEST() 119 {"2147483647", INT_MAX, true}, in TEST() 136 {"2147483648", INT_MAX, false}, in TEST() 137 {"99999999999", INT_MAX, false}, in TEST() 182 {"2147483647", INT_MAX, true}, in TEST() 245 {"2147483647", INT_MAX, true}, in TEST() 310 {"2147483647", INT_MAX, true}, in TEST() 380 {"2147483647", INT_MAX, true}, in TEST() 447 {"7fffffff", INT_MAX, true}, in TEST() [all …]
|
/external/bison/lib/ |
D | mbswidth.c | 140 if (w > INT_MAX - width) in mbsnwidth() 150 if (width == INT_MAX) in mbsnwidth() 173 if (width == INT_MAX) in mbsnwidth() 181 if (width == INT_MAX) in mbsnwidth() 192 return INT_MAX; in mbsnwidth()
|
D | vsprintf.c | 52 lenbuf = (SIZE_MAX < INT_MAX ? SIZE_MAX : INT_MAX); in vsprintf() 70 if (len > INT_MAX) in vsprintf()
|
D | sprintf.c | 53 lenbuf = (SIZE_MAX < INT_MAX ? SIZE_MAX : INT_MAX); in sprintf() 73 if (len > INT_MAX) in sprintf()
|
/external/libavc/encoder/ |
D | ih264e_intra_modes_eval.c | 332 WORD32 i4_mb_distortion = INT_MAX, i4_mb_distortion_least = INT_MAX; in ih264e_evaluate_intra16x16_modes_for_least_cost_rdoptoff() 338 WORD32 i4_mb_cost= INT_MAX, i4_mb_cost_least = INT_MAX; in ih264e_evaluate_intra16x16_modes_for_least_cost_rdoptoff() 524 … WORD32 i4_partition_distortion, i4_partition_distortion_least = INT_MAX, i4_total_distortion = 0; in ih264e_evaluate_intra8x8_modes_for_least_cost_rdoptoff() 626 i4_partition_cost_least = INT_MAX; in ih264e_evaluate_intra8x8_modes_for_least_cost_rdoptoff() 776 WORD32 i4_partition_distortion_least = INT_MAX, i4_total_distortion = 0; in ih264e_evaluate_intra4x4_modes_for_least_cost_rdoptoff() 922 i4_partition_cost_least = INT_MAX; in ih264e_evaluate_intra4x4_modes_for_least_cost_rdoptoff() 1045 WORD32 i4_partition_distortion_least = INT_MAX, i4_total_distortion = 0; in ih264e_evaluate_intra4x4_modes_for_least_cost_rdopton() 1228 i4_partition_cost_least = INT_MAX; in ih264e_evaluate_intra4x4_modes_for_least_cost_rdopton() 1456 i4_chroma_mb_distortion = INT_MAX; in ih264e_evaluate_chroma_intra8x8_modes_for_least_cost_rdoptoff() 1550 WORD32 i4_sad_vert = INT_MAX, i4_sad_horz = INT_MAX, i4_sad_dc = INT_MAX, in ih264e_evaluate_intra16x16_modes() [all …]
|
/external/syslinux/gpxe/src/arch/x86_64/include/ |
D | limits.h | 27 #define INT_MIN (-INT_MAX - 1) 28 #define INT_MAX 2147483647 macro 35 #define INT_MAX 2147483647 macro 36 #define INT_MIN (-INT_MAX - 1)
|
/external/syslinux/gpxe/src/arch/i386/include/ |
D | limits.h | 29 #define INT_MIN (-INT_MAX - 1) 30 #define INT_MAX 2147483647 macro 37 #define INT_MAX 2147483647 macro 38 #define INT_MIN (-INT_MAX - 1)
|
/external/google-breakpad/src/processor/ |
D | static_range_map_unittest.cc | 81 { INT_MAX - 9, 11, 3, false }, // tests anti-overflow 82 { INT_MAX - 9, 10, 4, true }, // highest possible range 127 { INT_MIN, INT_MAX, 50, true }, // From INT_MIN to -2, inclusive 129 { 1, INT_MAX, 52, true }, // From 1 to INT_MAX, inclusive 130 { INT_MIN, INT_MAX, 53, false }, // Can't fill the space twice 132 { 1, INT_MAX, 55, false }, 143 { INT_MAX, 0, 102, false }, // makes RetrieveRange check high end 150 { INT_MAX - 1, 1, 111, true }, 152 { INT_MAX, 0, 113, false } // makes RetrieveRange check high end
|
D | range_map_unittest.cc | 372 { INT_MAX - 9, 11, 3, false }, // tests anti-overflow in RunTests() 373 { INT_MAX - 9, 10, 4, true }, // highest possible range in RunTests() 418 { INT_MIN, INT_MAX, 50, true }, // From INT_MIN to -2, inclusive in RunTests() 420 { 1, INT_MAX, 52, true }, // From 1 to INT_MAX, inclusive in RunTests() 421 { INT_MIN, INT_MAX, 53, false }, // Can't fill the space twice in RunTests() 423 { 1, INT_MAX, 55, false }, in RunTests() 434 { INT_MAX, 0, 102, false }, // makes RetrieveRange check high end in RunTests() 441 { INT_MAX - 1, 1, 111, true }, in RunTests() 443 { INT_MAX, 0, 113, false } // makes RetrieveRange check high end in RunTests()
|
D | static_address_map_unittest.cc | 119 target = INT_MAX; in RetrieveTester() 161 target = INT_MAX; in TEST_F() 180 target = INT_MAX; in TEST_F() 199 target = INT_MAX; in TEST_F() 218 target = INT_MAX; in TEST_F()
|
/external/dhcpcd-6.8.2/compat/ |
D | pollts.c | 50 else if (ts->tv_sec > INT_MAX / 1000 || in pollts() 51 (ts->tv_sec == INT_MAX / 1000 && in pollts() 52 (ts->tv_nsec + 999999) / 1000000 > INT_MAX % 1000000)) in pollts() 53 timeout = INT_MAX; in pollts()
|
/external/openssh/openbsd-compat/ |
D | fake-rfc2553.h | 124 # define EAI_NODATA (INT_MAX - 1) 127 # define EAI_MEMORY (INT_MAX - 2) 130 # define EAI_NONAME (INT_MAX - 3) 133 # define EAI_SYSTEM (INT_MAX - 4) 136 # define EAI_FAMILY (INT_MAX - 5)
|
/external/libavc/encoder/x86/ |
D | ih264e_intra_modes_eval_ssse3.c | 160 sad_vert = INT_MAX; in ih264e_evaluate_intra16x16_modes_ssse3() 161 sad_horz = INT_MAX; in ih264e_evaluate_intra16x16_modes_ssse3() 162 sad_dc = INT_MAX; in ih264e_evaluate_intra16x16_modes_ssse3() 486 WORD32 sad[MAX_I4x4] = { INT_MAX, INT_MAX, INT_MAX, INT_MAX, INT_MAX, in ih264e_evaluate_intra_4x4_modes_ssse3() 487 INT_MAX, INT_MAX, INT_MAX, INT_MAX }; in ih264e_evaluate_intra_4x4_modes_ssse3() 488 WORD32 cost[MAX_I4x4] = { INT_MAX, INT_MAX, INT_MAX, INT_MAX, INT_MAX, in ih264e_evaluate_intra_4x4_modes_ssse3() 489 INT_MAX, INT_MAX, INT_MAX, INT_MAX }; in ih264e_evaluate_intra_4x4_modes_ssse3() 835 WORD32 sad_vert = INT_MAX, sad_horz = INT_MAX, sad_dc = INT_MAX, min_sad; in ih264e_evaluate_intra_chroma_modes_ssse3()
|
/external/clang/test/Headers/ |
D | limits.cpp | 10 _Static_assert(INT_MAX == -(INT_MIN+1), ""); 15 _Static_assert(INT_MAX == UINT_MAX/2, ""); 20 _Static_assert(INT_MIN == -INT_MAX-1, "");
|
/external/valgrind/none/tests/s390x/ |
D | lpr.c | 81 t32(INT_MAX); t32(INT_MIN); t32(UINT_MAX); in main() 85 t64(INT_MAX); t64(INT_MIN); t64(UINT_MAX); in main() 90 t3264(INT_MAX); t3264(INT_MIN); t3264(UINT_MAX); in main()
|
/external/libxml2/ |
D | buf.c | 61 if (buf->size < INT_MAX) buf->compat_size = buf->size; \ 62 else buf->compat_size = INT_MAX; \ 63 if (buf->use < INT_MAX) buf->compat_use = buf->use; \ 64 else buf->compat_use = INT_MAX; 73 if (buf->compat_size < INT_MAX) \ 76 if (buf->compat_use < INT_MAX) \ 242 if (size < INT_MAX) { in xmlBufCreateStatic() 246 ret->compat_use = INT_MAX; in xmlBufCreateStatic() 247 ret->compat_size = INT_MAX; in xmlBufCreateStatic() 1219 if (buf->use > INT_MAX) { in xmlBufBackToBuffer() [all …]
|
/external/pdfium/third_party/libtiff/ |
D | 0017-safe_skews_in_gtTileContig.patch | 37 + if(safeskew > INT_MAX || safeskew < INT_MIN){ 53 + if(safeskew > INT_MAX || safeskew < INT_MIN){ 70 + if(safeskew > INT_MAX || safeskew < INT_MIN){ 80 + if(safeskew > INT_MAX || safeskew < INT_MIN){
|
/external/webrtc/talk/media/base/ |
D | videoadapter.cc | 96 float best_distance = static_cast<float>(INT_MAX); in FindScale() 169 : output_num_pixels_(INT_MAX), in VideoAdapter() 372 view_desired_num_pixels_(INT_MAX), in CoordinatedVideoAdapter() 374 encoder_desired_num_pixels_(INT_MAX), in CoordinatedVideoAdapter() 375 cpu_desired_num_pixels_(INT_MAX), in CoordinatedVideoAdapter() 554 cpu_desired_num_pixels_ = cpu_downgrade_count_ == 0 ? INT_MAX : in OnCpuResolutionRequest() 632 int min_num_pixels = INT_MAX; in AdaptToMinimumFormat() 652 if (!input.IsSize0x0() && min_num_pixels != INT_MAX) { in AdaptToMinimumFormat()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 181 if (tmpmse >= INT_MAX) { \ 182 v = INT_MAX; \ 191 v = INT_MAX; \ 214 v = INT_MAX; \ 440 if (cost_list && cost_list[0] != INT_MAX && cost_list[1] != INT_MAX && in vp9_find_best_sub_pixel_tree_pruned_evenmore() 441 cost_list[2] != INT_MAX && cost_list[3] != INT_MAX && in vp9_find_best_sub_pixel_tree_pruned_evenmore() 442 cost_list[4] != INT_MAX && is_cost_list_wellbehaved(cost_list)) { in vp9_find_best_sub_pixel_tree_pruned_evenmore() 497 if (cost_list && cost_list[0] != INT_MAX && cost_list[1] != INT_MAX && in vp9_find_best_sub_pixel_tree_pruned_more() 498 cost_list[2] != INT_MAX && cost_list[3] != INT_MAX && in vp9_find_best_sub_pixel_tree_pruned_more() 499 cost_list[4] != INT_MAX && is_cost_list_wellbehaved(cost_list)) { in vp9_find_best_sub_pixel_tree_pruned_more() [all …]
|
/external/v8/testing/gmock/src/ |
D | gmock-cardinalities.cc | 112 } else if (max_ == INT_MAX) { in DescribeTo() 119 } else if (max_ == INT_MAX) { in DescribeTo() 140 GTEST_API_ Cardinality AtLeast(int n) { return Between(n, INT_MAX); } in AtLeast()
|