Lines Matching refs:uint64_t
4 typedef unsigned long long uint64_t; typedef
8 int array64[sizeof(uint64_t) == 8 ? 1 : -1];
10 int arrayint[sizeof(int) < sizeof(uint64_t) ? 1 : -1];
12 uint64_t f0(uint64_t);
13 uint64_t f1(uint64_t, uint32_t);
14 uint64_t f2(uint64_t, ...);
16 static const uint64_t overflow = 1 * 4608 * 1024 * 1024; // expected-warning {{overflow in expressi…
18 uint64_t check_integer_overflows(int i) { //expected-note 0+{{declared here}} in check_integer_overflows()
20 uint64_t overflow = 4608 * 1024 * 1024, in check_integer_overflows()
22 overflow2 = (uint64_t)(4608 * 1024 * 1024), in check_integer_overflows()
24 overflow3 = (uint64_t)(4608 * 1024 * 1024 * i), in check_integer_overflows()
28 overflow5 = static_cast<uint64_t>(4608 * 1024 * 1024), in check_integer_overflows()
30 … multi_overflow = (uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
33 overflow += overflow2 = overflow3 = (uint64_t)(4608 * 1024 * 1024); in check_integer_overflows()
38 overflow += overflow2 = overflow3 = static_cast<uint64_t>(4608 * 1024 * 1024); in check_integer_overflows()
40 uint64_t not_overflow = 4608 * 1024 * 1024ULL; in check_integer_overflows()
41 uint64_t not_overflow2 = (1ULL * ((uint64_t)(4608) * (1024 * 1024)) + 2ULL); in check_integer_overflows()
54 if ((uint64_t)(4608 * 1024 * 1024)) in check_integer_overflows()
58 if (static_cast<uint64_t>(4608 * 1024 * 1024)) in check_integer_overflows()
62 if ((uint64_t)(4608 * 1024 * 1024)) in check_integer_overflows()
66 if ((uint64_t)(4608 * 1024 * 1024 * i)) in check_integer_overflows()
74 if ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))) in check_integer_overflows()
83 case (uint64_t)(4609 * 1024 * 1024): in check_integer_overflows()
86 case 1 + static_cast<uint64_t>(4609 * 1024 * 1024): in check_integer_overflows()
89 case ((uint64_t)(4608 * 1024 * 1024 * i)): in check_integer_overflows()
96 case ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))): in check_integer_overflows()
105 while ((uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
108 while (static_cast<uint64_t>(4608 * 1024 * 1024)); in check_integer_overflows()
111 while ((uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
114 while ((uint64_t)(4608 * 1024 * 1024 * i)); in check_integer_overflows()
120 while ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))); in check_integer_overflows()
126 do { } while ((uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
129 do { } while (static_cast<uint64_t>(4608 * 1024 * 1024)); in check_integer_overflows()
132 do { } while ((uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
135 do { } while ((uint64_t)(4608 * 1024 * 1024 * i)); in check_integer_overflows()
141 do { } while ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))); in check_integer_overflows()
146 for (uint64_t i = 4608 * 1024 * 1024; in check_integer_overflows()
147 (uint64_t)(4608 * 1024 * 1024); in check_integer_overflows()
148 i += (uint64_t)(4608 * 1024 * 1024 * i)); in check_integer_overflows()
153 for (uint64_t i = (1ULL * ((4608) * ((1024) * (1024))) + 2ULL); in check_integer_overflows()
154 ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))); in check_integer_overflows()
155 i = ((4608 * 1024 * 1024) + ((uint64_t)(4608 * 1024 * 1024)))); in check_integer_overflows()
167 uint64_t a[10]; in check_integer_overflows()
175 return ((4608 * 1024 * 1024) + ((uint64_t)(4608 * 1024 * 1024))); in check_integer_overflows()
183 uint64_t x = f0(4608 * 1024 * 1024); in check_integer_overflows_in_function_calls()
186 uint64_t (*f0_ptr)(uint64_t) = &f0; in check_integer_overflows_in_function_calls()