Home
last modified time | relevance | path

Searched refs:arch_atomic64_try_cmpxchg (Results 1 – 4 of 4) sorted by relevance

/linux-6.1.9/arch/x86/include/asm/
Datomic64_64.h188 static __always_inline bool arch_atomic64_try_cmpxchg(atomic64_t *v, s64 *old, s64 new) in arch_atomic64_try_cmpxchg() function
192 #define arch_atomic64_try_cmpxchg arch_atomic64_try_cmpxchg macro
213 } while (!arch_atomic64_try_cmpxchg(v, &val, val & i)); in arch_atomic64_fetch_and()
231 } while (!arch_atomic64_try_cmpxchg(v, &val, val | i)); in arch_atomic64_fetch_or()
249 } while (!arch_atomic64_try_cmpxchg(v, &val, val ^ i)); in arch_atomic64_fetch_xor()
/linux-6.1.9/include/linux/atomic/
Datomic-arch-fallback.h2184 #ifdef arch_atomic64_try_cmpxchg
2185 #define arch_atomic64_try_cmpxchg_acquire arch_atomic64_try_cmpxchg
2186 #define arch_atomic64_try_cmpxchg_release arch_atomic64_try_cmpxchg
2187 #define arch_atomic64_try_cmpxchg_relaxed arch_atomic64_try_cmpxchg
2190 #ifndef arch_atomic64_try_cmpxchg
2192 arch_atomic64_try_cmpxchg(atomic64_t *v, s64 *old, s64 new) in arch_atomic64_try_cmpxchg() function
2200 #define arch_atomic64_try_cmpxchg arch_atomic64_try_cmpxchg macro
2265 #ifndef arch_atomic64_try_cmpxchg
2267 arch_atomic64_try_cmpxchg(atomic64_t *v, s64 *old, s64 new) in arch_atomic64_try_cmpxchg() function
2275 #define arch_atomic64_try_cmpxchg arch_atomic64_try_cmpxchg macro
[all …]
Datomic-long.h437 return arch_atomic64_try_cmpxchg(v, (s64 *)old, new); in arch_atomic_long_try_cmpxchg()
Datomic-instrumented.h1154 return arch_atomic64_try_cmpxchg(v, old, new); in atomic64_try_cmpxchg()