• Home
  • Raw
  • Download

Lines Matching refs:uint64_t

2 typedef unsigned long long uint64_t;  typedef
6 int array64[sizeof(uint64_t) == 8 ? 1 : -1];
8 int arrayint[sizeof(int) < sizeof(uint64_t) ? 1 : -1];
10 uint64_t f0(uint64_t);
11 uint64_t f1(uint64_t, uint32_t);
12 uint64_t f2(uint64_t, ...);
14 static const uint64_t overflow = 1 * 4608 * 1024 * 1024; // expected-warning {{overflow in expressi…
16 uint64_t check_integer_overflows(int i) { in check_integer_overflows()
18 uint64_t overflow = 4608 * 1024 * 1024, in check_integer_overflows()
20 overflow2 = (uint64_t)(4608 * 1024 * 1024), in check_integer_overflows()
22 overflow3 = (uint64_t)(4608 * 1024 * 1024 * i), in check_integer_overflows()
26 … multi_overflow = (uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
29 overflow += overflow2 = overflow3 = (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 ((uint64_t)(4608 * 1024 * 1024)) in check_integer_overflows()
55 if ((uint64_t)(4608 * 1024 * 1024 * i)) in check_integer_overflows()
63 if ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))) in check_integer_overflows()
71 case (uint64_t)(4609 * 1024 * 1024): in check_integer_overflows()
74 case ((uint64_t)(4608 * 1024 * 1024 * i)): in check_integer_overflows()
81 case ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))): in check_integer_overflows()
89 while ((uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
92 while ((uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
95 while ((uint64_t)(4608 * 1024 * 1024 * i)); in check_integer_overflows()
101 while ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))); in check_integer_overflows()
107 do { } while ((uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
110 do { } while ((uint64_t)(4608 * 1024 * 1024)); in check_integer_overflows()
113 do { } while ((uint64_t)(4608 * 1024 * 1024 * i)); in check_integer_overflows()
119 do { } while ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))); in check_integer_overflows()
124 for (uint64_t i = 4608 * 1024 * 1024; in check_integer_overflows()
125 (uint64_t)(4608 * 1024 * 1024); in check_integer_overflows()
126 i += (uint64_t)(4608 * 1024 * 1024 * i)); in check_integer_overflows()
131 for (uint64_t i = (1ULL * ((4608) * ((1024) * (1024))) + 2ULL); in check_integer_overflows()
132 ((uint64_t)((uint64_t)(4608 * 1024 * 1024) * (uint64_t)(4608 * 1024 * 1024))); in check_integer_overflows()
133 i = ((4608 * 1024 * 1024) + ((uint64_t)(4608 * 1024 * 1024)))); in check_integer_overflows()
147 uint64_t a[10]; in check_integer_overflows()
151 return ((4608 * 1024 * 1024) + ((uint64_t)(4608 * 1024 * 1024))); in check_integer_overflows()