Home
last modified time | relevance | path

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

/freebsd/sys/compat/linuxkpi/common/include/asm/
H A Datomic64.h56 return (atomic_fetchadd_64(&v->counter, i)); in atomic64_fetch_add()
62 return i + atomic_fetchadd_64(&v->counter, i); in atomic64_add_return()
68 return atomic_fetchadd_64(&v->counter, -i) - i; in atomic64_sub_return()
86 return atomic_fetchadd_64(&v->counter, 1) + 1; in atomic64_inc()
92 return atomic_fetchadd_64(&v->counter, -1) - 1; in atomic64_dec()
/freebsd/sys/dev/virtio/gpu/
H A Dvirtio_gpu.c494 s.req.fence_id = htole64(atomic_fetchadd_64(&sc->vtgpu_next_fence, 1)); in vtgpu_get_display_info()
537 atomic_fetchadd_64(&sc->vtgpu_next_fence, 1)); in vtgpu_create_2d()
575 atomic_fetchadd_64(&sc->vtgpu_next_fence, 1)); in vtgpu_attach_backing()
611 atomic_fetchadd_64(&sc->vtgpu_next_fence, 1)); in vtgpu_set_scanout()
649 atomic_fetchadd_64(&sc->vtgpu_next_fence, 1)); in vtgpu_transfer_to_host_2d()
688 atomic_fetchadd_64(&sc->vtgpu_next_fence, 1)); in vtgpu_resource_flush()
/freebsd/sys/sys/
H A D_atomic64e.h56 u_int64_t atomic_fetchadd_64(volatile u_int64_t *, u_int64_t);
H A Datomic_san.h385 #define atomic_fetchadd_64 ATOMIC_SAN(fetchadd_64) macro
H A Dsystm.h559 return (atomic_fetchadd_64(&unr64->counter, 1)); in alloc_unr64()
/freebsd/sys/riscv/include/
H A Datomic.h440 atomic_fetchadd_64(volatile uint64_t *p, uint64_t val) in atomic_fetchadd_64() function
542 #define atomic_fetchadd_long atomic_fetchadd_64
555 #define atomic_fetchadd_ptr atomic_fetchadd_64
/freebsd/sys/i386/include/
H A Datomic.h540 atomic_fetchadd_64(volatile uint64_t *p, uint64_t v) in atomic_fetchadd_64() function
800 #define atomic_fetchadd_acq_64 atomic_fetchadd_64
801 #define atomic_fetchadd_rel_64 atomic_fetchadd_64
/freebsd/sys/cddl/compat/opensolaris/sys/
H A Datomic.h120 return (atomic_fetchadd_64(target, delta) + delta); in atomic_add_64_nv()
/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Datomic.h131 return (atomic_fetchadd_64(target, delta) + delta); in atomic_add_64_nv()
/freebsd/sys/arm64/include/
H A Datomic.h595 #define atomic_fetchadd_long atomic_fetchadd_64
607 #define atomic_fetchadd_ptr atomic_fetchadd_64
/freebsd/sys/dev/smartpqi/
H A Dsmartpqi_defines.h985 #define OS_ATOMIC64_DEC(p) (atomic_fetchadd_64(p, -1) - 1)
986 #define OS_ATOMIC64_INC(p) (atomic_fetchadd_64(p, 1) + 1)
/freebsd/sys/amd64/include/
H A Datomic.h564 #define atomic_fetchadd_64 atomic_fetchadd_long macro
/freebsd/sys/netinet/
H A Dtcp_ratelimit.c1496 pre = atomic_fetchadd_64(&lrs->rs_flows_using, -1); in tcp_chg_pacing_rate()
1546 pre = atomic_fetchadd_64(&rs->rs_flows_using, -1); in tcp_rel_pacing_rate()
/freebsd/sys/powerpc/include/
H A Datomic.h983 #define atomic_fetchadd_64 atomic_fetchadd_long macro
/freebsd/sys/arm/include/
H A Datomic.h580 atomic_fetchadd_64(volatile uint64_t *p, uint64_t val) in atomic_fetchadd_64() function
/freebsd/sys/opencrypto/
H A Dcrypto.c982 res->id = atomic_fetchadd_64(&sessid, 1); in crypto_newsession()
/freebsd/sys/vm/
H A Duma_core.c4235 old = atomic_fetchadd_64(&zone->uz_items, in zone_alloc_limit_hard()
4278 old = atomic_fetchadd_64(&zone->uz_items, count); in zone_alloc_limit()
4309 old = atomic_fetchadd_64(&zone->uz_items, -count); in zone_free_limit()
/freebsd/sys/dev/wg/
H A Dwg_noise.c800 *send = atomic_fetchadd_64(&kp->kp_nonce_send, 1); in noise_keypair_nonce_next()
/freebsd/sys/net/
H A Dif_ovpn.c1895 seq64 = atomic_fetchadd_64(&peer->keys[OVPN_KEY_SLOT_PRIMARY].encrypt->tx_seq, 1); in ovpn_transmit_to_peer()