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