Home
last modified time | relevance | path

Searched refs:atomic64_xchg (Results 1 – 19 of 19) sorted by relevance

/Linux-v4.19/include/linux/
Datomic.h1082 #define atomic64_xchg_relaxed atomic64_xchg
1083 #define atomic64_xchg_acquire atomic64_xchg
1084 #define atomic64_xchg_release atomic64_xchg
1090 __atomic_op_acquire(atomic64_xchg, __VA_ARGS__)
1095 __atomic_op_release(atomic64_xchg, __VA_ARGS__)
1098 #ifndef atomic64_xchg
1099 #define atomic64_xchg(...) \ macro
1100 __atomic_op_fence(atomic64_xchg, __VA_ARGS__)
/Linux-v4.19/arch/arm/include/asm/xen/
Devents.h20 #define xchg_xen_ulong(ptr, val) atomic64_xchg(container_of((long long*)(ptr),\
/Linux-v4.19/lib/
Datomic64.c167 long long atomic64_xchg(atomic64_t *v, long long new) in atomic64_xchg() function
179 EXPORT_SYMBOL(atomic64_xchg);
/Linux-v4.19/arch/arm/mm/
Dcontext.c147 asid = atomic64_xchg(&per_cpu(active_asids, i), 0); in flush_context()
258 && atomic64_xchg(&per_cpu(active_asids, cpu), asid)) in check_and_switch_context()
/Linux-v4.19/include/asm-generic/
Datomic64.h56 extern long long atomic64_xchg(atomic64_t *v, long long new);
Dlocal64.h84 #define local64_xchg(l, n) atomic64_xchg((&(l)->a), (n))
Datomic-instrumented.h49 static __always_inline s64 atomic64_xchg(atomic64_t *v, s64 i) in atomic64_xchg() function
/Linux-v4.19/arch/sparc/include/asm/
Datomic_64.h62 #define atomic64_xchg(v, new) (xchg(&((v)->counter), new)) macro
/Linux-v4.19/arch/arm64/include/asm/
Datomic.h153 #define atomic64_xchg atomic_xchg macro
/Linux-v4.19/arch/s390/include/asm/
Datomic.h125 #define atomic64_xchg(v, new) (xchg(&((v)->counter), new)) macro
/Linux-v4.19/net/netfilter/
Dnfnetlink_acct.c158 pkts = atomic64_xchg(&acct->pkts, 0); in nfnl_acct_fill_info()
159 bytes = atomic64_xchg(&acct->bytes, 0); in nfnl_acct_fill_info()
Dnf_conntrack_netlink.c246 pkts = atomic64_xchg(&counter[dir].packets, 0); in dump_counters()
247 bytes = atomic64_xchg(&counter[dir].bytes, 0); in dump_counters()
/Linux-v4.19/arch/parisc/include/asm/
Datomic.h224 #define atomic64_xchg(v, new) (xchg(&((v)->counter), new)) macro
/Linux-v4.19/arch/alpha/include/asm/
Datomic.h203 #define atomic64_xchg(v, new) (xchg(&((v)->counter), new)) in ATOMIC_OPS() macro
/Linux-v4.19/arch/ia64/include/asm/
Datomic.h216 #define atomic64_xchg(v, new) (xchg(&((v)->counter), new)) macro
/Linux-v4.19/arch/mips/include/asm/
Datomic.h415 #define atomic64_xchg(v, new) (xchg(&((v)->counter), (new))) macro
/Linux-v4.19/arch/arc/include/asm/
Datomic.h470 static inline long long atomic64_xchg(atomic64_t *ptr, long long new)
/Linux-v4.19/arch/powerpc/include/asm/
Datomic.h493 #define atomic64_xchg(v, new) (xchg(&((v)->counter), new)) macro
/Linux-v4.19/drivers/gpu/drm/radeon/
Dradeon_fence.c253 } while (atomic64_xchg(&rdev->fence_drv[ring].last_seq, seq) > seq); in radeon_fence_activity()