Lines Matching full:sequentially
3 // __sync_* operations are implicitly sequentially-consistent. Some codebases
6 …nc_fetch_and_add(ptr, val); } // expected-warning {{implicit use of sequentially-consistent atom… in fetch_and_add()
7 …nc_fetch_and_sub(ptr, val); } // expected-warning {{implicit use of sequentially-consistent atom… in fetch_and_sub()
8 …c_fetch_and_or(ptr, val); } // expected-warning {{implicit use of sequentially-consistent atom… in fetch_and_or()
9 …nc_fetch_and_and(ptr, val); } // expected-warning {{implicit use of sequentially-consistent atom… in fetch_and_and()
10 …nc_fetch_and_xor(ptr, val); } // expected-warning {{implicit use of sequentially-consistent atom… in fetch_and_xor()
11 …ync_fetch_and_nand(ptr, val); } // expected-warning {{implicit use of sequentially-consistent atom… in fetch_and_nand()
13 …nc_add_and_fetch(ptr, val); } // expected-warning {{implicit use of sequentially-consistent atom… in add_and_fetch()
14 …nc_sub_and_fetch(ptr, val); } // expected-warning {{implicit use of sequentially-consistent atom… in sub_and_fetch()
15 …c_or_and_fetch(ptr, val); } // expected-warning {{implicit use of sequentially-consistent atom… in or_and_fetch()
16 …nc_and_and_fetch(ptr, val); } // expected-warning {{implicit use of sequentially-consistent atom… in and_and_fetch()
17 …nc_xor_and_fetch(ptr, val); } // expected-warning {{implicit use of sequentially-consistent atom… in xor_and_fetch()
18 …ync_nand_and_fetch(ptr, val); } // expected-warning {{implicit use of sequentially-consistent atom… in nand_and_fetch()
20 …nd_swap(ptr, oldval, newval); } // expected-warning {{implicit use of sequentially-consistent atom… in bool_compare_and_swap()
21 …_swap(ptr, oldval, newval); } // expected-warning {{implicit use of sequentially-consistent atom… in val_compare_and_swap()
23 void synchronize(void) { __sync_synchronize(); } // expected-warning {{implicit use of sequentially… in synchronize()
25 …_lock_test_and_set(ptr, val); } // expected-warning {{implicit use of sequentially-consistent atom… in lock_test_and_set()
26 …ptr); } // expected-warning {{implicit use of sequentially-consistent atom… in lock_release()