Lines Matching defs:ull
23 unsigned long long ull;
31 /* expect+1: warning: 'ull' set but not used in function 'example' [191] */
32 ull = c * u;
34 ull = u + c;
36 ull = i - u;
38 ull = u * i;
47 ull = u / c;
48 ull = u % c;
55 * "ull = u * u", which has many more possibilities for overflowing.
57 ull = u++;
58 ull = ++u;
59 ull = u--;
60 ull = --u;