Symbol: atomic_store_64
sys/arm/include/atomic.h
805
atomic_store_64(volatile uint64_t *p, uint64_t val)
sys/arm/include/atomic.h
842
atomic_store_64(p, val);
sys/arm/include/counter.h
66
atomic_store_64((uint64_t *)zpcpu_get(arg), 0);
sys/arm64/arm64/pmap.c
541
#define pmap_clear(table) atomic_store_64(table, 0)
sys/arm64/arm64/pmap.c
547
#define pmap_store(table, entry) atomic_store_64(table, entry)
sys/arm64/iommu/iommu_pmap.c
96
#define smmu_pmap_clear(table) atomic_store_64(table, 0)
sys/arm64/iommu/iommu_pmap.c
97
#define smmu_pmap_store(table, entry) atomic_store_64(table, entry)
sys/arm64/vmm/vmm_mmu.c
326
atomic_store_64(&l3[pmap_l3_index(va)], l3e | pa);
sys/arm64/vmm/vmm_mmu.c
385
atomic_store_64(&l3[pmap_l3_index(va)], l3e);
sys/arm64/vmm/vmm_mmu.c
394
atomic_store_64(&l3[pmap_l3_index(va)], 0);
sys/arm64/vmm/vmm_mmu.c
408
atomic_store_64(l3_list[i], 0);
sys/dev/gve/gve_utils.c
451
atomic_store_64(timestamp_sec, GVE_TIMESTAMP_INVALID);
sys/dev/gve/gve_utils.c
477
atomic_store_64(timestamp_sec, curr_time.sec);
sys/dev/vmware/vmci/vmci_defs.h
402
#define qp_atomic_write_offset(x, y) atomic_store_64(x, y)
sys/dev/wg/wg_noise.c
839
atomic_store_64(&kp->kp_nonce_recv, recv);
sys/net/if_ovpn.c
2123
atomic_store_64(&peer->keys[OVPN_KEY_SLOT_PRIMARY].encrypt->tx_seq,
sys/netpfil/pf/pf_syncookies.c
398
atomic_store_64(&V_pf_status.syncookies_inflight[V_pf_syncookie_status.oddeven], 0);
sys/riscv/riscv/pmap.c
349
#define pmap_store(pte, entry) atomic_store_64(pte, entry)
sys/sys/_atomic64e.h
71
void atomic_store_64(volatile u_int64_t *, u_int64_t);
sys/sys/_atomic64e.h
72
#define atomic_store_rel_64 atomic_store_64
sys/vm/vnode_pager.c
559
atomic_store_64(&object->un_pager.vnp.vnp_size, nsize);
sys/x86/iommu/intel_qi.c
143
atomic_store_64((uint64_t *)(unit->x86c.inv_queue +
sys/x86/iommu/intel_qi.c
155
atomic_store_64((uint64_t *)(unit->x86c.inv_queue +
sys/x86/x86/cpu_machdep.c
140
atomic_store_64(a->res, v);
sys/x86/x86/cpu_machdep.c
153
atomic_store_64(a->res, v);
sys/x86/x86/cpu_machdep.c
168
atomic_store_64(a->res, v);
sys/x86/x86/cpu_machdep.c
185
atomic_store_64(a->res, v);
sys/x86/x86/cpu_machdep.c
192
atomic_store_64(a->res, v);
sys/x86/x86/cpu_machdep.c
202
atomic_store_64(a->res, v);
tests/sys/kern/kcov.c
317
atomic_store_64(&buf[0], 0);
tests/sys/kern/kcov.c
355
atomic_store_64(&buf[0], 0);
tests/sys/kern/kcov.c
424
atomic_store_64(&data->buf[0], 0);