• Home
  • Raw
  • Download

Lines Matching refs:uint64_t

2 typedef unsigned long long uint64_t;  typedef
6 int array64[sizeof(uint64_t) == 8 ? 1 : -1];
8 int arrayint[sizeof(int) < sizeof(uint64_t) ? 1 : -1];
10 uint64_t f0(uint64_t);
11 uint64_t f1(uint64_t, uint32_t);
12 uint64_t f2(uint64_t, ...);
14 static const uint64_t overflow = 1 * 4608 * 1024 * 1024; // expected-warning {{overflow in expressi…
16 uint64_t check_integer_overflows(int i) { //expected-note {{declared here}} in check_integer_overflows()
18 uint64_t overflow = 4608 * 1024 * 1024, in check_integer_overflows()
20 overflow2 = (uint64_t)(4608 * 1024 * 1024), in check_integer_overflows()
22 overflow3 = (uint64_t)(4608 * 1024 * 1024 * i), in check_integer_overflows()
26 overflow5 = static_cast<uint64_t>(4608 * 1024 * 1024), in check_integer_overflows()
28 … multi_overflow = (uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
31 overflow += overflow2 = overflow3 = (uint64_t)(4608 * 1024 * 1024); in check_integer_overflows()
36 overflow += overflow2 = overflow3 = static_cast<uint64_t>(4608 * 1024 * 1024); in check_integer_overflows()
38 uint64_t not_overflow = 4608 * 1024 * 1024ULL; in check_integer_overflows()
39 uint64_t not_overflow2 = (1ULL * ((uint64_t)(4608) * (1024 * 1024)) + 2ULL); in check_integer_overflows()
52 if ((uint64_t)(4608 * 1024 * 1024)) in check_integer_overflows()
56 if (static_cast<uint64_t>(4608 * 1024 * 1024)) in check_integer_overflows()
60 if ((uint64_t)(4608 * 1024 * 1024)) in check_integer_overflows()
64 if ((uint64_t)(4608 * 1024 * 1024 * i)) in check_integer_overflows()
72 if ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))) in check_integer_overflows()
80 case (uint64_t)(4609 * 1024 * 1024): in check_integer_overflows()
83 case 1 + static_cast<uint64_t>(4609 * 1024 * 1024): in check_integer_overflows()
87 case ((uint64_t)(4608 * 1024 * 1024 * i)): in check_integer_overflows()
94 case ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))): in check_integer_overflows()
102 while ((uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
105 while (static_cast<uint64_t>(4608 * 1024 * 1024)); in check_integer_overflows()
108 while ((uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
111 while ((uint64_t)(4608 * 1024 * 1024 * i)); in check_integer_overflows()
117 while ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))); in check_integer_overflows()
123 do { } while ((uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
126 do { } while (static_cast<uint64_t>(4608 * 1024 * 1024)); in check_integer_overflows()
129 do { } while ((uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
132 do { } while ((uint64_t)(4608 * 1024 * 1024 * i)); in check_integer_overflows()
138 do { } while ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))); in check_integer_overflows()
143 for (uint64_t i = 4608 * 1024 * 1024; in check_integer_overflows()
144 (uint64_t)(4608 * 1024 * 1024); in check_integer_overflows()
145 i += (uint64_t)(4608 * 1024 * 1024 * i)); in check_integer_overflows()
150 for (uint64_t i = (1ULL * ((4608) * ((1024) * (1024))) + 2ULL); in check_integer_overflows()
151 ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))); in check_integer_overflows()
152 i = ((4608 * 1024 * 1024) + ((uint64_t)(4608 * 1024 * 1024)))); in check_integer_overflows()
166 uint64_t a[10]; in check_integer_overflows()
170 return ((4608 * 1024 * 1024) + ((uint64_t)(4608 * 1024 * 1024))); in check_integer_overflows()