/freebsd/sys/compat/linuxkpi/common/include/asm/ |
H A D | atomic64.h | 56 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 D | virtio_gpu.c | 494 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.h | 56 u_int64_t atomic_fetchadd_64(volatile u_int64_t *, u_int64_t);
|
H A D | atomic_san.h | 385 #define atomic_fetchadd_64 ATOMIC_SAN(fetchadd_64) macro
|
H A D | systm.h | 559 return (atomic_fetchadd_64(&unr64->counter, 1)); in alloc_unr64()
|
/freebsd/sys/riscv/include/ |
H A D | atomic.h | 440 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 D | atomic.h | 540 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 D | atomic.h | 120 return (atomic_fetchadd_64(target, delta) + delta); in atomic_add_64_nv()
|
/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/ |
H A D | atomic.h | 131 return (atomic_fetchadd_64(target, delta) + delta); in atomic_add_64_nv()
|
/freebsd/sys/arm64/include/ |
H A D | atomic.h | 595 #define atomic_fetchadd_long atomic_fetchadd_64 607 #define atomic_fetchadd_ptr atomic_fetchadd_64
|
/freebsd/sys/dev/smartpqi/ |
H A D | smartpqi_defines.h | 985 #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 D | atomic.h | 564 #define atomic_fetchadd_64 atomic_fetchadd_long macro
|
/freebsd/sys/netinet/ |
H A D | tcp_ratelimit.c | 1496 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 D | atomic.h | 983 #define atomic_fetchadd_64 atomic_fetchadd_long macro
|
/freebsd/sys/arm/include/ |
H A D | atomic.h | 580 atomic_fetchadd_64(volatile uint64_t *p, uint64_t val) in atomic_fetchadd_64() function
|
/freebsd/sys/opencrypto/ |
H A D | crypto.c | 982 res->id = atomic_fetchadd_64(&sessid, 1); in crypto_newsession()
|
/freebsd/sys/vm/ |
H A D | uma_core.c | 4235 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 D | wg_noise.c | 800 *send = atomic_fetchadd_64(&kp->kp_nonce_send, 1); in noise_keypair_nonce_next()
|
/freebsd/sys/net/ |
H A D | if_ovpn.c | 1895 seq64 = atomic_fetchadd_64(&peer->keys[OVPN_KEY_SLOT_PRIMARY].encrypt->tx_seq, 1); in ovpn_transmit_to_peer()
|