Lines Matching full:operation
14 a = 0 ? NULL + a : a + NULL; // expected-warning 2{{use of NULL in arithmetic operation}} in f()
15 a = 0 ? NULL - a : a - NULL; // expected-warning 2{{use of NULL in arithmetic operation}} in f()
16 a = 0 ? NULL / a : a / NULL; // expected-warning 2{{use of NULL in arithmetic operation}} \ in f()
18 a = 0 ? NULL * a : a * NULL; // expected-warning 2{{use of NULL in arithmetic operation}} in f()
19 a = 0 ? NULL >> a : a >> NULL; // expected-warning 2{{use of NULL in arithmetic operation}} in f()
20 a = 0 ? NULL << a : a << NULL; // expected-warning 2{{use of NULL in arithmetic operation}} in f()
21 a = 0 ? NULL % a : a % NULL; // expected-warning 2{{use of NULL in arithmetic operation}} \ in f()
23 a = 0 ? NULL & a : a & NULL; // expected-warning 2{{use of NULL in arithmetic operation}} in f()
24 a = 0 ? NULL | a : a | NULL; // expected-warning 2{{use of NULL in arithmetic operation}} in f()
25 a = 0 ? NULL ^ a : a ^ NULL; // expected-warning 2{{use of NULL in arithmetic operation}} in f()
29 v = 0 ? NULL + &a : &a + NULL; // expected-warning 2{{use of NULL in arithmetic operation}} in f()
37 v = 0 ? NULL + f : f + NULL; // expected-warning 2{{use of NULL in arithmetic operation}} in f()
38 v = 0 ? NULL + "f" : "f" + NULL; // expected-warning 2{{use of NULL in arithmetic operation}} in f()
41 a = NULL + NULL; // expected-warning{{use of NULL in arithmetic operation}} in f()
42 a = NULL - NULL; // expected-warning{{use of NULL in arithmetic operation}} in f()
43 a = NULL / NULL; // expected-warning{{use of NULL in arithmetic operation}} \ in f()
45 a = NULL * NULL; // expected-warning{{use of NULL in arithmetic operation}} in f()
46 a = NULL >> NULL; // expected-warning{{use of NULL in arithmetic operation}} in f()
47 a = NULL << NULL; // expected-warning{{use of NULL in arithmetic operation}} in f()
48 a = NULL % NULL; // expected-warning{{use of NULL in arithmetic operation}} \ in f()
50 a = NULL & NULL; // expected-warning{{use of NULL in arithmetic operation}} in f()
51 a = NULL | NULL; // expected-warning{{use of NULL in arithmetic operation}} in f()
52 a = NULL ^ NULL; // expected-warning{{use of NULL in arithmetic operation}} in f()
54 a += NULL; // expected-warning{{use of NULL in arithmetic operation}} in f()
55 a -= NULL; // expected-warning{{use of NULL in arithmetic operation}} in f()
56 a /= NULL; // expected-warning{{use of NULL in arithmetic operation}} \ in f()
58 a *= NULL; // expected-warning{{use of NULL in arithmetic operation}} in f()
59 a >>= NULL; // expected-warning{{use of NULL in arithmetic operation}} in f()
60 a <<= NULL; // expected-warning{{use of NULL in arithmetic operation}} in f()
61 a %= NULL; // expected-warning{{use of NULL in arithmetic operation}} \ in f()
63 a &= NULL; // expected-warning{{use of NULL in arithmetic operation}} in f()
64 a |= NULL; // expected-warning{{use of NULL in arithmetic operation}} in f()
65 a ^= NULL; // expected-warning{{use of NULL in arithmetic operation}} in f()