Symbol: atomic_load_32
sys/arm64/arm64/mp_machdep.c
147
nstarted = atomic_load_32(&aps_started);
sys/dev/gve/gve_tx_dqo.c
889
old_head = atomic_load_32(&tx->dqo.free_qpl_bufs_prd);
sys/dev/qat_c2xxx/qat.c
1041
while (atomic_load_32(msg) != ETR_RING_EMPTY_ENTRY_SIG) {
sys/dev/vmware/vmci/vmci_defs.h
412
return (atomic_load_32((volatile uint32_t *)(var)));
sys/net80211/ieee80211_freebsd.c
405
while (_IEEE80211_MASKSHIFT(atomic_load_32(&vap->iv_com_state),
sys/netinet/tcp_hostcache.c
396
hc_metrics_lite->hc_mtu = atomic_load_32(&hc_entry->hc_mtu);
sys/netinet/tcp_hostcache.c
397
hc_metrics_lite->hc_ssthresh = atomic_load_32(&hc_entry->hc_ssthresh);
sys/netinet/tcp_hostcache.c
398
hc_metrics_lite->hc_rtt = atomic_load_32(&hc_entry->hc_rtt);
sys/netinet/tcp_hostcache.c
399
hc_metrics_lite->hc_rttvar = atomic_load_32(&hc_entry->hc_rttvar);
sys/netinet/tcp_hostcache.c
400
hc_metrics_lite->hc_cwnd = atomic_load_32(&hc_entry->hc_cwnd);
sys/netinet/tcp_hostcache.c
401
hc_metrics_lite->hc_sendpipe = atomic_load_32(&hc_entry->hc_sendpipe);
sys/netinet/tcp_hostcache.c
402
hc_metrics_lite->hc_recvpipe = atomic_load_32(&hc_entry->hc_recvpipe);
sys/netinet/tcp_hostcache.c
426
mtu = atomic_load_32(&hc_entry->hc_mtu);
sys/netpfil/pf/pf_syncookies.c
163
atomic_load_32(&V_pf_status.states_halfopen));
sys/netpfil/pf/pf_syncookies.c
273
atomic_load_32(&V_pf_status.states_halfopen) >
sys/netpfil/pf/pf_syncookies.c
361
(atomic_load_32(&V_pf_status.states_halfopen) +
sys/rpc/clnt_dg.c
865
*(uint32_t *)info = atomic_load_32(&rpc_xid);
sys/sys/buf_ring.h
110
if (prod_head == atomic_load_32(&br->br_prod_head) &&
sys/sys/buf_ring.h
111
cons_tail == atomic_load_32(&br->br_cons_tail)) {
sys/sys/buf_ring.h
131
while (atomic_load_32(&br->br_prod_tail) != prod_head)
sys/sys/buf_ring.h
177
while (atomic_load_32(&br->br_cons_tail) != cons_head)
sys/sys/buf_ring.h
199
cons_head = atomic_load_32(&br->br_cons_head);
sys/sys/buf_ring.h
217
if (atomic_load_32(&br->br_cons_tail) != cons_head)
sys/sys/buf_ring.h
219
atomic_load_32(&br->br_cons_tail), cons_head);
sys/sys/buf_ring.h
239
cons_head = atomic_load_32(&br->br_cons_head);
sys/sys/buf_ring.h
240
prod_tail = atomic_load_32(&br->br_prod_tail);
sys/sys/buf_ring.h
274
cons_idx = atomic_load_32(&br->br_cons_head) & mask;
sys/sys/buf_ring.h
275
KASSERT(cons_idx != (atomic_load_32(&br->br_prod_tail) & mask),
sys/sys/buf_ring.h
296
cons_head = atomic_load_32(&br->br_cons_head);
sys/sys/buf_ring.h
317
cons_head = atomic_load_32(&br->br_cons_head);
sys/sys/buf_ring.h
336
return (atomic_load_32(&br->br_prod_head) ==
sys/sys/buf_ring.h
337
atomic_load_32(&br->br_cons_tail) + br->br_cons_size - 1);
sys/sys/buf_ring.h
343
return (atomic_load_32(&br->br_cons_head) ==
sys/sys/buf_ring.h
344
atomic_load_32(&br->br_prod_tail));
sys/sys/buf_ring.h
352
cons_tail = atomic_load_32(&br->br_cons_tail);
sys/sys/buf_ring.h
353
prod_tail = atomic_load_32(&br->br_prod_tail);
sys/sys/buf_ring.h
86
for (uint32_t i = atomic_load_32(&br->br_cons_head);
sys/sys/buf_ring.h
87
i != atomic_load_32(&br->br_prod_head); i++)
sys/sys/buf_ring.h
90
buf, i, atomic_load_32(&br->br_prod_tail),
sys/sys/buf_ring.h
91
atomic_load_32(&br->br_cons_tail));
sys/vm/uma_core.c
1061
(seq = atomic_load_32(&zdom->uzd_seq)) != SMR_SEQ_INVALID &&
sys/vm/uma_core.c
4546
if (atomic_load_32(&zone->uz_sleepers) > 0)
sys/vm/uma_core.c
5414
return (atomic_load_32(&zone->uz_sleepers) > 0);
sys/vm/vm_page.h
770
a._bits = atomic_load_32(&m->a._bits);
usr.sbin/bhyve/virtio.c
224
len = atomic_load_32(&vd->len);