Lines Matching full:mb
17 smp_store_mb(X,V) { __store{ONCE}(X,V); __fence{MB}; }
20 smp_mb() { __fence{MB}; }
31 xchg(X,V) __xchg{MB}(X,V)
35 cmpxchg(X,V,W) __cmpxchg{MB}(X,V,W)
75 atomic_add_return(V,X) __atomic_op_return{MB}(X,+,V)
79 atomic_fetch_add(V,X) __atomic_fetch_op{MB}(X,+,V)
84 atomic_fetch_and(V,X) __atomic_fetch_op{MB}(X,&,V)
89 atomic_fetch_or(V,X) __atomic_fetch_op{MB}(X,|,V)
94 atomic_fetch_xor(V,X) __atomic_fetch_op{MB}(X,^,V)
99 atomic_inc_return(X) __atomic_op_return{MB}(X,+,1)
103 atomic_fetch_inc(X) __atomic_fetch_op{MB}(X,+,1)
108 atomic_sub_return(V,X) __atomic_op_return{MB}(X,-,V)
112 atomic_fetch_sub(V,X) __atomic_fetch_op{MB}(X,-,V)
117 atomic_dec_return(X) __atomic_op_return{MB}(X,-,1)
121 atomic_fetch_dec(X) __atomic_fetch_op{MB}(X,-,1)
126 atomic_xchg(X,V) __xchg{MB}(X,V)
130 atomic_cmpxchg(X,V,W) __cmpxchg{MB}(X,V,W)
135 atomic_sub_and_test(V,X) __atomic_op_return{MB}(X,-,V) == 0
136 atomic_dec_and_test(X) __atomic_op_return{MB}(X,-,1) == 0
137 atomic_inc_and_test(X) __atomic_op_return{MB}(X,+,1) == 0
138 atomic_add_negative(V,X) __atomic_op_return{MB}(X,+,V) < 0
143 atomic_fetch_andnot(V,X) __atomic_fetch_op{MB}(X,&~,V)
148 atomic_add_unless(X,V,W) __atomic_add_unless{MB}(X,V,W)