Symbol: atomic_fcmpset_64
sys/arm64/arm64/pmap.c
4494
while (!atomic_fcmpset_64(l2, &old_l2, (old_l2 & ~mask) | nbits))
sys/arm64/arm64/pmap.c
4541
while (!atomic_fcmpset_64(tl3p, &l3e, (l3e & ~mask) | nbits))
sys/arm64/arm64/pmap.c
4694
while (!atomic_fcmpset_64(l3p, &l3, (l3 & ~mask) |
sys/arm64/arm64/pmap.c
5003
if (!atomic_fcmpset_64(firstl3, &newl2, newl2 & ~ATTR_SW_DBM))
sys/arm64/arm64/pmap.c
5035
if (!atomic_fcmpset_64(l3, &oldl3, oldl3 &
sys/arm64/arm64/pmap.c
5146
if (!atomic_fcmpset_64(l3p, &firstl3c, firstl3c & ~ATTR_SW_DBM))
sys/arm64/arm64/pmap.c
5176
if (!atomic_fcmpset_64(l3, &oldl3, oldl3 &
sys/arm64/arm64/pmap.c
7507
while (!atomic_fcmpset_64(pte, &oldpte,
sys/arm64/arm64/pmap.c
8772
while (!atomic_fcmpset_64(tl2p, &l2e, l2e & ~(ATTR_CONTIGUOUS |
sys/arm64/arm64/pmap.c
8861
while (!atomic_fcmpset_64(tl3p, &l3e, l3e & ~(ATTR_CONTIGUOUS |
sys/arm64/include/atomic.h
592
#define atomic_fcmpset_long atomic_fcmpset_64
sys/arm64/include/atomic.h
604
#define atomic_fcmpset_ptr atomic_fcmpset_64
sys/cddl/compat/opensolaris/sys/atomic.h
127
(void)atomic_fcmpset_64(target, &cmp, newval);
sys/cddl/compat/opensolaris/sys/atomic.h
132
if (atomic_fcmpset_64(target, &cmp, newval))
sys/compat/linuxkpi/common/include/asm/atomic.h
210
while (!atomic_fcmpset_64((volatile u64 *)(ptr), \
sys/compat/linuxkpi/common/include/asm/atomic64.h
103
if (likely(atomic_fcmpset_64(&v->counter, &c, c + a)))
sys/compat/linuxkpi/common/include/asm/atomic64.h
117
if (likely(atomic_fcmpset_64(&v->counter, &c, c + a)))
sys/compat/linuxkpi/common/include/asm/atomic64.h
131
while (!atomic_fcmpset_64(&v->counter, &ret, i))
sys/compat/linuxkpi/common/include/asm/atomic64.h
143
if (atomic_fcmpset_64(&v->counter, &ret, new))
sys/dev/cxgbe/t4_mp_ring.c
154
} while (atomic_fcmpset_64(&r->state, &os.state,
sys/dev/cxgbe/t4_mp_ring.c
397
if (atomic_fcmpset_64(&r->state, &os.state, ns.state))
sys/dev/cxgbe/t4_mp_ring.c
512
if (atomic_fcmpset_64(&r->state, &os.state, ns.state))
sys/i386/include/atomic.h
798
#define atomic_fcmpset_acq_64 atomic_fcmpset_64
sys/i386/include/atomic.h
799
#define atomic_fcmpset_rel_64 atomic_fcmpset_64
sys/net/mp_ring.c
192
} while (atomic_fcmpset_64(&r->state, &os.state,
sys/net/mp_ring.c
418
if (atomic_fcmpset_64(&r->state, &os.state, ns.state))
sys/riscv/include/atomic.h
541
#define atomic_fcmpset_long atomic_fcmpset_64
sys/riscv/include/atomic.h
554
#define atomic_fcmpset_ptr atomic_fcmpset_64
sys/riscv/riscv/pmap.c
3167
if (atomic_fcmpset_64(firstl3, &firstl3e, firstl3e & ~PTE_W)) {
sys/riscv/riscv/pmap.c
3190
if (atomic_fcmpset_64(l3, &l3e, l3e & ~PTE_W)) {
sys/sys/_atomic64e.h
52
int atomic_fcmpset_64(volatile u_int64_t *, u_int64_t *, u_int64_t);
sys/sys/_atomic64e.h
53
#define atomic_fcmpset_acq_64 atomic_fcmpset_64
sys/sys/_atomic64e.h
54
#define atomic_fcmpset_rel_64 atomic_fcmpset_64
sys/vm/uma_core.c
4188
} while (atomic_fcmpset_64(&zone->uz_items, &old, new) == 0);
sys/vm/vm_page.c
5409
while (atomic_fcmpset_64(bits, &old, newbits) == 0);