Searched refs:__atomic64_try_cmpxchg (Results 1 – 1 of 1) sorted by relevance
/Linux-v4.19/include/linux/ |
D | atomic.h | 1130 #define __atomic64_try_cmpxchg(type, _p, _po, _n) \ macro 1140 #define atomic64_try_cmpxchg(_p, _po, _n) __atomic64_try_cmpxchg(, _p, _po, _n) 1141 #define atomic64_try_cmpxchg_relaxed(_p, _po, _n) __atomic64_try_cmpxchg(_relaxed, _p, _po, _n) 1142 #define atomic64_try_cmpxchg_acquire(_p, _po, _n) __atomic64_try_cmpxchg(_acquire, _p, _po, _n) 1143 #define atomic64_try_cmpxchg_release(_p, _po, _n) __atomic64_try_cmpxchg(_release, _p, _po, _n)
|