Lines Matching refs:uint64_t

2 typedef unsigned long long uint64_t;  typedef
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 expressi…
11 uint64_t check_integer_overflows(int i) { //expected-note {{declared here}} in check_integer_overflows()
13 uint64_t overflow = 4608 * 1024 * 1024, in check_integer_overflows()
15 overflow2 = (uint64_t)(4608 * 1024 * 1024), in check_integer_overflows()
17 overflow3 = (uint64_t)(4608 * 1024 * 1024 * i), in check_integer_overflows()
21 overflow5 = static_cast<uint64_t>(4608 * 1024 * 1024), in check_integer_overflows()
23 … multi_overflow = (uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
26 overflow += overflow2 = overflow3 = (uint64_t)(4608 * 1024 * 1024); in check_integer_overflows()
31 overflow += overflow2 = overflow3 = static_cast<uint64_t>(4608 * 1024 * 1024); in check_integer_overflows()
33 uint64_t not_overflow = 4608 * 1024 * 1024ULL; in check_integer_overflows()
34 uint64_t not_overflow2 = (1ULL * ((uint64_t)(4608) * (1024 * 1024)) + 2ULL); in check_integer_overflows()
47 if ((uint64_t)(4608 * 1024 * 1024)) in check_integer_overflows()
51 if (static_cast<uint64_t>(4608 * 1024 * 1024)) in check_integer_overflows()
55 if ((uint64_t)(4608 * 1024 * 1024)) in check_integer_overflows()
59 if ((uint64_t)(4608 * 1024 * 1024 * i)) in check_integer_overflows()
67 if ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))) in check_integer_overflows()
75 case (uint64_t)(4609 * 1024 * 1024): in check_integer_overflows()
78 case 1 + static_cast<uint64_t>(4609 * 1024 * 1024): in check_integer_overflows()
82 case ((uint64_t)(4608 * 1024 * 1024 * i)): in check_integer_overflows()
89 case ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))): in check_integer_overflows()
97 while ((uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
100 while (static_cast<uint64_t>(4608 * 1024 * 1024)); in check_integer_overflows()
103 while ((uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
106 while ((uint64_t)(4608 * 1024 * 1024 * i)); in check_integer_overflows()
112 while ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))); in check_integer_overflows()
118 do { } while ((uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
121 do { } while (static_cast<uint64_t>(4608 * 1024 * 1024)); in check_integer_overflows()
124 do { } while ((uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
127 do { } while ((uint64_t)(4608 * 1024 * 1024 * i)); in check_integer_overflows()
133 do { } while ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))); in check_integer_overflows()
138 for (uint64_t i = 4608 * 1024 * 1024; in check_integer_overflows()
139 (uint64_t)(4608 * 1024 * 1024); in check_integer_overflows()
140 i += (uint64_t)(4608 * 1024 * 1024 * i)); in check_integer_overflows()
145 for (uint64_t i = (1ULL * ((4608) * ((1024) * (1024))) + 2ULL); in check_integer_overflows()
146 ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))); in check_integer_overflows()
147 i = ((4608 * 1024 * 1024) + ((uint64_t)(4608 * 1024 * 1024)))); in check_integer_overflows()
161 uint64_t a[10]; in check_integer_overflows()
165 return ((4608 * 1024 * 1024) + ((uint64_t)(4608 * 1024 * 1024))); in check_integer_overflows()