Home
last modified time | relevance | path

Searched refs:atomic64_fetch_sub (Results 1 – 2 of 2) sorted by relevance

/linux-4.19.296/include/linux/
Datomic.h918 #define atomic64_fetch_sub_relaxed atomic64_fetch_sub
919 #define atomic64_fetch_sub_acquire atomic64_fetch_sub
920 #define atomic64_fetch_sub_release atomic64_fetch_sub
926 __atomic_op_acquire(atomic64_fetch_sub, __VA_ARGS__)
931 __atomic_op_release(atomic64_fetch_sub, __VA_ARGS__)
934 #ifndef atomic64_fetch_sub
935 #define atomic64_fetch_sub(...) \ macro
936 __atomic_op_fence(atomic64_fetch_sub, __VA_ARGS__)
944 #define atomic64_fetch_dec(v) atomic64_fetch_sub(1, (v))
/linux-4.19.296/include/asm-generic/
Datomic-instrumented.h333 static __always_inline s64 atomic64_fetch_sub(s64 i, atomic64_t *v) in atomic64_fetch_sub() function