Lines Matching refs:ll
4 static int test(int i, long l, long long ll, enum e e, bool b, void *p) in test() argument
13 rc += __builtin_add_overflow(ll, i, &i); in test()
14 rc += __builtin_add_overflow(i, ll, &i); in test()
15 rc += __builtin_add_overflow(i, i, &ll); in test()
21 rc += __builtin_add_overflow_p(ll, i, i); in test()
22 rc += __builtin_add_overflow_p(i, ll, i); in test()
23 rc += __builtin_add_overflow_p(i, i, ll); in test()
29 rc += __builtin_sub_overflow(ll, i, &i); in test()
30 rc += __builtin_sub_overflow(i, ll, &i); in test()
31 rc += __builtin_sub_overflow(i, i, &ll); in test()
37 rc += __builtin_sub_overflow_p(ll, i, i); in test()
38 rc += __builtin_sub_overflow_p(i, ll, i); in test()
39 rc += __builtin_sub_overflow_p(i, i, ll); in test()
45 rc += __builtin_mul_overflow(ll, i, &i); in test()
46 rc += __builtin_mul_overflow(i, ll, &i); in test()
47 rc += __builtin_mul_overflow(i, i, &ll); in test()
53 rc += __builtin_mul_overflow_p(ll, i, i); in test()
54 rc += __builtin_mul_overflow_p(i, ll, i); in test()
55 rc += __builtin_mul_overflow_p(i, i, ll); in test()