Lines Matching full:uint64_t
2 typedef unsigned long long uint64_t;
5 uint64_t f0(uint64_t);
6 uint64_t f1(uint64_t, uint32_t);
7 uint64_t f2(uint64_t, ...);
9 static const uint64_t overflow = 1 * 4608 * 1024 * 1024; // expected-warning {{overflow in expression; result is 536870912 with type 'int'}}
11 uint64_t check_integer_overflows(int i) { //expected-note {{declared here}}
13 uint64_t overflow = 4608 * 1024 * 1024,
15 overflow2 = (uint64_t)(4608 * 1024 * 1024),
17 overflow3 = (uint64_t)(4608 * 1024 * 1024 * i),
21 overflow5 = static_cast<uint64_t>(4608 * 1024 * 1024),
23 multi_overflow = (uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024));
26 overflow += overflow2 = overflow3 = (uint64_t)(4608 * 1024 * 1024);
31 overflow += overflow2 = overflow3 = static_cast<uint64_t>(4608 * 1024 * 1024);
33 uint64_t not_overflow = 4608 * 1024 * 1024ULL;
34 uint64_t not_overflow2 = (1ULL * ((uint64_t)(4608) * (1024 * 1024)) + 2ULL);
47 if ((uint64_t)(4608 * 1024 * 1024))
51 if (static_cast<uint64_t>(4608 * 1024 * 1024))
55 if ((uint64_t)(4608 * 1024 * 1024))
59 if ((uint64_t)(4608 * 1024 * 1024 * i))
67 if ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024)))
75 case (uint64_t)(4609 * 1024 * 1024):
78 case 1 + static_cast<uint64_t>(4609 * 1024 * 1024):
82 case ((uint64_t)(4608 * 1024 * 1024 * i)):
89 case ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))):
97 while ((uint64_t)(4608 * 1024 * 1024));
100 while (static_cast<uint64_t>(4608 * 1024 * 1024));
103 while ((uint64_t)(4608 * 1024 * 1024));
106 while ((uint64_t)(4608 * 1024 * 1024 * i));
112 while ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024)));
118 do { } while ((uint64_t)(4608 * 1024 * 1024));
121 do { } while (static_cast<uint64_t>(4608 * 1024 * 1024));
124 do { } while ((uint64_t)(4608 * 1024 * 1024));
127 do { } while ((uint64_t)(4608 * 1024 * 1024 * i));
133 do { } while ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024)));
138 for (uint64_t i = 4608 * 1024 * 1024;
139 (uint64_t)(4608 * 1024 * 1024);
140 i += (uint64_t)(4608 * 1024 * 1024 * i));
145 for (uint64_t i = (1ULL * ((4608) * ((1024) * (1024))) + 2ULL);
146 ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024)));
147 i = ((4608 * 1024 * 1024) + ((uint64_t)(4608 * 1024 * 1024))));
161 uint64_t a[10];
165 return ((4608 * 1024 * 1024) + ((uint64_t)(4608 * 1024 * 1024)));