Home | History | Annotate | Download | only in SemaCXX

Lines Matching defs:uint64_t

2 typedef unsigned long long uint64_t;
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 expression; result is 536870912 with type 'int'}}
16 uint64_t check_integer_overflows(int i) { //expected-note {{declared here}}
18 uint64_t overflow = 4608 * 1024 * 1024,
20 overflow2 = (uint64_t)(4608 * 1024 * 1024),
22 overflow3 = (uint64_t)(4608 * 1024 * 1024 * i),
26 overflow5 = static_cast<uint64_t>(4608 * 1024 * 1024),
28 multi_overflow = (uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024));
31 overflow += overflow2 = overflow3 = (uint64_t)(4608 * 1024 * 1024);
36 overflow += overflow2 = overflow3 = static_cast<uint64_t>(4608 * 1024 * 1024);
38 uint64_t not_overflow = 4608 * 1024 * 1024ULL;
39 uint64_t not_overflow2 = (1ULL * ((uint64_t)(4608) * (1024 * 1024)) + 2ULL);
52 if ((uint64_t)(4608 * 1024 * 1024))
56 if (static_cast<uint64_t>(4608 * 1024 * 1024))
60 if ((uint64_t)(4608 * 1024 * 1024))
64 if ((uint64_t)(4608 * 1024 * 1024 * i))
72 if ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024)))
80 case (uint64_t)(4609 * 1024 * 1024):
83 case 1 + static_cast<uint64_t>(4609 * 1024 * 1024):
87 case ((uint64_t)(4608 * 1024 * 1024 * i)):
94 case ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))):
102 while ((uint64_t)(4608 * 1024 * 1024));
105 while (static_cast<uint64_t>(4608 * 1024 * 1024));
108 while ((uint64_t)(4608 * 1024 * 1024));
111 while ((uint64_t)(4608 * 1024 * 1024 * i));
117 while ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024)));
123 do { } while ((uint64_t)(4608 * 1024 * 1024));
126 do { } while (static_cast<uint64_t>(4608 * 1024 * 1024));
129 do { } while ((uint64_t)(4608 * 1024 * 1024));
132 do { } while ((uint64_t)(4608 * 1024 * 1024 * i));
138 do { } while ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024)));
143 for (uint64_t i = 4608 * 1024 * 1024;
144 (uint64_t)(4608 * 1024 * 1024);
145 i += (uint64_t)(4608 * 1024 * 1024 * i));
150 for (uint64_t i = (1ULL * ((4608) * ((1024) * (1024))) + 2ULL);
151 ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024)));
152 i = ((4608 * 1024 * 1024) + ((uint64_t)(4608 * 1024 * 1024))));
166 uint64_t a[10];
170 return ((4608 * 1024 * 1024) + ((uint64_t)(4608 * 1024 * 1024)));