Home | History | Annotate | Download | only in Sema

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) {
13 uint64_t overflow = 4608 * 1024 * 1024,
15 overflow2 = (uint64_t)(4608 * 1024 * 1024),
17 overflow3 = (uint64_t)(4608 * 1024 * 1024 * i),
21 multi_overflow = (uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024));
24 overflow += overflow2 = overflow3 = (uint64_t)(4608 * 1024 * 1024);
28 uint64_t not_overflow = 4608 * 1024 * 1024ULL;
29 uint64_t not_overflow2 = (1ULL * ((uint64_t)(4608) * (1024 * 1024)) + 2ULL);
42 if ((uint64_t)(4608 * 1024 * 1024))
46 if ((uint64_t)(4608 * 1024 * 1024))
50 if ((uint64_t)(4608 * 1024 * 1024 * i))
58 if ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024)))
66 case (uint64_t)(4609 * 1024 * 1024):
69 case ((uint64_t)(4608 * 1024 * 1024 * i)):
76 case ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))):
84 while ((uint64_t)(4608 * 1024 * 1024));
87 while ((uint64_t)(4608 * 1024 * 1024));
90 while ((uint64_t)(4608 * 1024 * 1024 * i));
96 while ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024)));
102 do { } while ((uint64_t)(4608 * 1024 * 1024));
105 do { } while ((uint64_t)(4608 * 1024 * 1024));
108 do { } while ((uint64_t)(4608 * 1024 * 1024 * i));
114 do { } while ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024)));
119 for (uint64_t i = 4608 * 1024 * 1024;
120 (uint64_t)(4608 * 1024 * 1024);
121 i += (uint64_t)(4608 * 1024 * 1024 * i));
126 for (uint64_t i = (1ULL * ((4608) * ((1024) * (1024))) + 2ULL);
127 ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024)));
128 i = ((4608 * 1024 * 1024) + ((uint64_t)(4608 * 1024 * 1024))));
142 uint64_t a[10];
146 return ((4608 * 1024 * 1024) + ((uint64_t)(4608 * 1024 * 1024)));