Home
last modified time | relevance | path

Searched refs:atomic_store_relaxed (Results 1 – 25 of 134) sorted by relevance

123456

/netbsd-src/sys/net/npf/
H A Dnpf_alg.c163 atomic_store_relaxed(&afuncs->destroy, funcs->destroy); in npf_alg_register()
165 atomic_store_relaxed(&afuncs->translate, funcs->translate); in npf_alg_register()
166 atomic_store_relaxed(&afuncs->inspect, funcs->inspect); in npf_alg_register()
167 atomic_store_relaxed(&afuncs->match, funcs->match); in npf_alg_register()
170 atomic_store_relaxed(&aset->alg_count, MAX(aset->alg_count, i + 1)); in npf_alg_register()
189 atomic_store_relaxed(&afuncs->match, NULL); in npf_alg_unregister()
190 atomic_store_relaxed(&afuncs->translate, NULL); in npf_alg_unregister()
191 atomic_store_relaxed(&afuncs->inspect, NULL); in npf_alg_unregister()
199 atomic_store_relaxed(&afuncs->destroy, NULL); in npf_alg_unregister()
H A Dnpf_conn.c177 atomic_store_relaxed(&npf->conn_tracking, CONN_TRACKING_OFF); in npf_conn_init()
229 atomic_store_relaxed(&npf->conn_tracking, CONN_TRACKING_ON); in npf_conn_load()
252 atomic_store_relaxed(&npf->conn_tracking, in npf_conn_tracking()
280 atomic_store_relaxed(&con->c_atime, tsnow.tv_sec); in conn_update_atime()
451 atomic_store_relaxed(&con->c_flags, di & PFIL_ALL); in npf_conn_establish()
452 atomic_store_relaxed(&con->c_refcnt, 0); in npf_conn_establish()
486 atomic_store_relaxed(&con->c_refcnt, 1); in npf_conn_establish()
882 atomic_store_relaxed(&con->c_flags, flags); in npf_conn_import()
H A Dnpf_ruleset.c267 atomic_store_relaxed(&rl->r_next, target->r_next); in npf_ruleset_add()
269 atomic_store_relaxed(&target->r_next, rl); in npf_ruleset_add()
275 atomic_store_relaxed(&rl->r_next, rg->r_subset); in npf_ruleset_add()
277 atomic_store_relaxed(&rg->r_subset, rl); in npf_ruleset_add()
/netbsd-src/sys/kern/
H A Dkern_heartbeat.c150 atomic_store_relaxed(p, *p + 1); in heartbeat_suspend()
207 atomic_store_relaxed(p, *p - 1); in heartbeat_resume()
308 atomic_store_relaxed(&heartbeat_max_period_secs, max_period); in set_max_period()
309 atomic_store_relaxed(&heartbeat_max_period_ticks, max_period*hz); in set_max_period()
411 atomic_store_relaxed(&curcpu()->ci_heartbeat_uptime_stamp, count); in heartbeat_intr()
412 atomic_store_relaxed(&curcpu()->ci_heartbeat_uptime_cache, uptime); in heartbeat_intr()
475 atomic_store_relaxed(ack, true); in defibrillator()
H A Dkern_entropy.c773 atomic_store_relaxed(&ec->ec_bitspending, 0); in entropy_account_cpu()
774 atomic_store_relaxed(&ec->ec_samplespending, 0); in entropy_account_cpu()
775 atomic_store_relaxed(&E->bitsneeded, 0); in entropy_account_cpu()
776 atomic_store_relaxed(&E->samplesneeded, 0); in entropy_account_cpu()
811 atomic_store_relaxed(&ec->ec_bitspending, in entropy_account_cpu()
817 atomic_store_relaxed(&ec->ec_samplespending, in entropy_account_cpu()
958 atomic_store_relaxed(&ec->ec_bitspending, bitspending); in entropy_enter()
962 atomic_store_relaxed(&ec->ec_samplespending, samplespending); in entropy_enter()
1052 atomic_store_relaxed(&ec->ec_bitspending, bitspending); in entropy_enter_intr()
1056 atomic_store_relaxed( in entropy_enter_intr()
[all...]
H A Dkern_module_hook.c78 atomic_store_relaxed(hooked, true); in module_hook_set()
92 atomic_store_relaxed(hooked, false); in module_hook_unset()
H A Dkern_tc.c176 atomic_store_relaxed(&time__second, second); in setrealuptime()
177 atomic_store_relaxed(&time__uptime, uptime); in setrealuptime()
198 atomic_store_relaxed(&time__second32.lo, seclo); in setrealuptime()
199 atomic_store_relaxed(&time__uptime32.lo, uplo); in setrealuptime()
203 atomic_store_relaxed(&time__second32.hi, 0xffffffff); in setrealuptime()
204 atomic_store_relaxed(&time__uptime32.hi, 0xffffffff); in setrealuptime()
206 atomic_store_relaxed(&time__second32.lo, seclo); in setrealuptime()
207 atomic_store_relaxed(&time__uptime32.lo, uplo); in setrealuptime()
209 atomic_store_relaxed(&time__second32.hi, sechi); in setrealuptime()
210 atomic_store_relaxed(&time__uptime32.hi, uphi); in setrealuptime()
H A Dsubr_thmap.c442 atomic_store_relaxed(&node->state, NODE_LOCKED); in node_create()
462 atomic_store_relaxed(&node->slots[slot], child); in node_insert()
463 atomic_store_relaxed(&node->state, in node_insert()
478 atomic_store_relaxed(&node->slots[slot], THMAP_NULL); in node_remove()
479 atomic_store_relaxed(&node->state, in node_remove()
909 atomic_store_relaxed(&node->state, in thmap_del()
938 atomic_store_relaxed(&parent->state, in thmap_del()
940 atomic_store_relaxed(&thmap->root[rslot], THMAP_NULL); in thmap_del()
H A Dsubr_fault.c135 atomic_store_relaxed(&fault_global.nth, args->nth); in fault_ioc_enable()
151 atomic_store_relaxed(&f->nth, args->nth); in fault_ioc_enable()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_quarantine.h89 atomic_store_relaxed(&max_size_, size); in Init()
90 atomic_store_relaxed(&min_size_, size / 10 * 9); // 90% of max size. in Init()
91 atomic_store_relaxed(&max_cache_size_, cache_size); in Init()
238 atomic_store_relaxed(&from_cache->size_, 0); in Transfer()
309 atomic_store_relaxed(&size_, Size() + add); in SizeAdd()
312 atomic_store_relaxed(&size_, Size() - sub); in SizeSub()
H A Dsanitizer_atomic.h80 inline void atomic_store_relaxed(volatile T *a, typename T::Type v) { in atomic_store_relaxed() function
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_quarantine.h90 atomic_store_relaxed(&max_size_, size); in Init()
91 atomic_store_relaxed(&min_size_, size / 10 * 9); // 90% of max size. in Init()
92 atomic_store_relaxed(&max_cache_size_, cache_size); in Init()
238 atomic_store_relaxed(&from_cache->size_, 0); in Transfer()
309 atomic_store_relaxed(&size_, Size() + add); in SizeAdd()
312 atomic_store_relaxed(&size_, Size() - sub); in SizeSub()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_quarantine.h88 atomic_store_relaxed(&max_size_, size); in Init()
89 atomic_store_relaxed(&min_size_, size / 10 * 9); // 90% of max size. in Init()
90 atomic_store_relaxed(&max_cache_size_, cache_size); in Init()
236 atomic_store_relaxed(&from_cache->size_, 0); in Transfer()
307 atomic_store_relaxed(&size_, Size() + add); in SizeAdd()
310 atomic_store_relaxed(&size_, Size() - sub); in SizeSub()
H A Dsanitizer_atomic.h79 INLINE void atomic_store_relaxed(volatile T *a, typename T::Type v) { in atomic_store_relaxed() function
/netbsd-src/sys/dev/usb/
H A Duhid.c289 atomic_store_relaxed(&sc->sc_state, 0); in uhidopen()
306 atomic_store_relaxed(&sc->sc_async, NULL); in uhidopen()
323 atomic_store_relaxed(&sc->sc_async, NULL); in uhidopen()
333 atomic_store_relaxed(&sc->sc_state, 0); in uhidopen()
388 atomic_store_relaxed(&sc->sc_async, NULL); in uhidclose()
404 atomic_store_relaxed(&sc->sc_state, 0); in uhidclose()
538 atomic_store_relaxed(&sc->sc_async, l->l_proc); in uhidioctl()
541 atomic_store_relaxed(&sc->sc_async, NULL); in uhidioctl()
/netbsd-src/sys/dev/pci/ixgbe/
H A Dixgbe_netbsd.h63 atomic_store_relaxed(&((evp)->ev_count), (val))
65 atomic_store_relaxed(&((evp)->ev_count), \
/netbsd-src/sys/external/bsd/drm2/linux/
H A Dlinux_dma_resv.c592 atomic_store_relaxed(&robj->fence_excl, fence); in dma_resv_add_excl_fence()
658 atomic_store_relaxed(&list->shared[i], fence); in dma_resv_add_shared_fence()
665 atomic_store_relaxed(&list->shared[list->shared_count], in dma_resv_add_shared_fence()
667 atomic_store_relaxed(&list->shared_count, in dma_resv_add_shared_fence()
712 atomic_store_relaxed(&robj->fence, prealloc); in dma_resv_add_shared_fence()
994 atomic_store_relaxed(&dst_robj->fence, dst_list); in dma_resv_copy_fences()
995 atomic_store_relaxed(&dst_robj->fence_excl, fence); in dma_resv_copy_fences()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_sync.h92 atomic_store_relaxed(&flags, atomic_load_relaxed(&flags) | f); in SetFlags()
104 atomic_store_relaxed(&flags, current | (flagz & MutexCreationFlagMask)); in UpdateFlags()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_sync.h90 atomic_store_relaxed(&flags, atomic_load_relaxed(&flags) | f); in SetFlags()
102 atomic_store_relaxed(&flags, current | (flagz & MutexCreationFlagMask)); in UpdateFlags()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_sync.h90 atomic_store_relaxed(&flags, atomic_load_relaxed(&flags) | f); in SetFlags()
102 atomic_store_relaxed(&flags, current | (flagz & MutexCreationFlagMask)); in UpdateFlags()
H A Dtsan_interface_ann.cpp86 atomic_store_relaxed(&race->addcount, in AddExpectRace()
97 atomic_store_relaxed(&race->hitcount, 0); in AddExpectRace()
98 atomic_store_relaxed(&race->addcount, 1); in AddExpectRace()
/netbsd-src/external/cddl/osnet/dev/lockstat/
H A Dlockstat.c81 atomic_store_relaxed(&lockstat_probemap[LS_COMPRESS(probe->lsp_probe)], in lockstat_enable()
95 atomic_store_relaxed(&lockstat_probemap[LS_COMPRESS(probe->lsp_probe)], in lockstat_disable()
/netbsd-src/sys/dev/pci/igc/
H A Digc_evcnt.h245 atomic_store_relaxed(p, atomic_load_relaxed(p) + (delta))
247 atomic_store_relaxed(p, val)
/netbsd-src/sys/arch/alpha/alpha/
H A Dpmap.c1434 atomic_store_relaxed(&pmap_kernel()->pm_count, 1); in pmap_bootstrap()
1624 atomic_store_relaxed(&pmap->pm_count, 1); in pmap_create()
1927 atomic_store_relaxed(&pmap->pm_stats.wired_count, 0); in pmap_remove_all()
1928 atomic_store_relaxed(&pmap->pm_stats.resident_count, 0); in pmap_remove_all()
1979 atomic_store_relaxed(pv->pv_pte, in pmap_page_protect()
2399 atomic_store_relaxed(pte, npte); in pmap_enter()
2456 atomic_store_relaxed(pte, npte); in pmap_kenter_pa()
2512 atomic_store_relaxed(pte, PG_NV); in pmap_kremove()
3015 atomic_store_relaxed(pte, PG_NV); in pmap_remove_mapping()
3077 atomic_store_relaxed(pte, npte); in pmap_changebit()
[all …]
/netbsd-src/sys/external/bsd/drm2/include/linux/
H A Dratelimit.h98 atomic_store_relaxed(&r->missed, 1); in __ratelimit()

123456