• Home
  • Raw
  • Download

Lines Matching full:use

10 …++atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger me…  in bad_pre_inc()
14 …--atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger me… in bad_pre_dec()
18 …atom++; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger me… in bad_post_inc()
22 …atom--; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger me… in bad_post_dec()
26 …gimme_int(atom); // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_call()
30 …return +atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stron… in bad_unary_plus()
34 …return -atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stron… in bad_unary_minus()
38 …return !atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stron… in bad_unary_logical_not()
42 …return ~atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stron… in bad_unary_bitwise_not()
46 …return (int)atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_explicit_cast()
50 …return atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur strong… in bad_implicit_cast()
54 …return atom * i; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_mul_1()
58 …return i * atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_mul_2()
62 …return atom / i; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_div_1()
66 …return i / atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_div_2()
70 …return atom % i; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_mod_1()
74 …return i % atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_mod_2()
78 …return atom + i; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_add_1()
82 …return i + atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_add_2()
86 …return atom - i; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_sub_1()
90 …return i - atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_sub_2()
94 …return atom << i; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_shl_1()
98 …return i << atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_shl_2()
102 …return atom >> i; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_shr_1()
106 …return i >> atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_shr_2()
110 …return atom < i; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_lt_1()
114 …return i < atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_lt_2()
118 …return atom <= i; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_le_1()
122 …return i <= atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_le_2()
126 …return atom > i; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_gt_1()
130 …return i > atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_gt_2()
134 …return atom >= i; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_ge_1()
138 …return i >= atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_ge_2()
142 …return atom == i; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_eq_1()
146 …return i == atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_eq_2()
150 …return atom != i; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_ne_1()
154 …return i != atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_ne_2()
158 …return atom & i; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_bitand_1()
162 …return i & atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_bitand_2()
166 …return atom ^ i; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_bitxor_1()
170 …return i ^ atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_bitxor_2()
174 …return atom | i; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_bitor_1()
178 …return i | atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur st… in bad_bitor_2()
182 …return atom && i; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_and_1()
186 …return i && atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_and_2()
190 …return atom || i; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_or_1()
194 …return i || atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur s… in bad_or_2()
197 …return i ? atom : j; // expected-warning {{implicit use of sequentially-consistent atomic may incu… in bad_ternary_1()
201 …return atom ? i : j; // expected-warning {{implicit use of sequentially-consistent atomic may incu… in bad_ternary_2()
205 …return i ? j : atom; // expected-warning {{implicit use of sequentially-consistent atomic may incu… in bad_ternary_3()
209 …atom = i; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger … in bad_assign_1()
213 …*i = atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger… in bad_assign_2()
217 …atom = atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur strong… in bad_assign_3()
221 …atom += i; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger… in bad_compound_add_1()
225 …*i += atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronge… in bad_compound_add_2()
229 …atom -= i; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger… in bad_compound_sub_1()
233 …*i -= atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronge… in bad_compound_sub_2()
237 …atom *= i; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger… in bad_compound_mul_1()
241 …*i *= atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronge… in bad_compound_mul_2()
245 …atom /= i; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger… in bad_compound_div_1()
249 …*i /= atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronge… in bad_compound_div_2()
253 …atom %= i; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger… in bad_compound_mod_1()
257 …*i %= atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronge… in bad_compound_mod_2()
261 …atom <<= i; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronge… in bad_compound_shl_1()
265 …*i <<= atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur strong… in bad_compound_shl_2()
269 …atom >>= i; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronge… in bad_compound_shr_1()
273 …*i >>= atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur strong… in bad_compound_shr_2()
277 …atom &= i; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger… in bad_compound_bitand_1()
281 …*i &= atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronge… in bad_compound_bitand_2()
285 …atom ^= i; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger… in bad_compound_bitxor_1()
289 …*i ^= atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronge… in bad_compound_bitxor_2()
293 …atom |= i; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronger… in bad_compound_bitor_1()
297 …*i |= atom; // expected-warning {{implicit use of sequentially-consistent atomic may incur stronge… in bad_compound_bitor_2()
301 …return (void)i, atom; // expected-warning {{implicit use of sequentially-consistent atomic may inc… in bad_comma()