Lines Matching refs:once
9 READ_ONCE(X) __load{once}(X)
10 WRITE_ONCE(X,V) { __store{once}(X,V); }
16 rcu_dereference(X) __load{once}(X)
17 smp_store_mb(X,V) { __store{once}(X,V); __fence{mb}; }
31 xchg_relaxed(X,V) __xchg{once}(X,V)
35 cmpxchg_relaxed(X,V,W) __cmpxchg{once}(X,V,W)
69 atomic_add_return_relaxed(V,X) __atomic_op_return{once}(X,+,V)
73 atomic_fetch_add_relaxed(V,X) __atomic_fetch_op{once}(X,+,V)
78 atomic_inc_return_relaxed(X) __atomic_op_return{once}(X,+,1)
82 atomic_fetch_inc_relaxed(X) __atomic_fetch_op{once}(X,+,1)
87 atomic_sub_return_relaxed(V,X) __atomic_op_return{once}(X,-,V)
91 atomic_fetch_sub_relaxed(V,X) __atomic_fetch_op{once}(X,-,V)
96 atomic_dec_return_relaxed(X) __atomic_op_return{once}(X,-,1)
100 atomic_fetch_dec_relaxed(X) __atomic_fetch_op{once}(X,-,1)
105 atomic_xchg_relaxed(X,V) __xchg{once}(X,V)
109 atomic_cmpxchg_relaxed(X,V,W) __cmpxchg{once}(X,V,W)