reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/Statistic.h
   75     Value.store(Val, std::memory_order_relaxed);
projects/openmp/runtime/src/kmp_barrier.cpp
 1429           KMP_ATOMIC_ST_RLX(&team->t.t_cancel_request, cancel_noreq);
projects/openmp/runtime/src/kmp_csupport.cpp
 1533       KMP_RELEASE_TAS_LOCK(lck, global_tid);
 2764     KMP_RELEASE_TAS_LOCK(user_lock, gtid);
projects/openmp/runtime/src/kmp_lock.cpp
  158   KMP_ATOMIC_ST_REL(&lck->lk.poll, KMP_LOCK_FREE(tas));
 2326           polls[i].store(old_polls[i]);
projects/openmp/runtime/src/kmp_taskdeps.cpp
   44   KMP_ATOMIC_ST_RLX(&node->dn.nrefs, 1); // init creates the first reference
projects/openmp/runtime/src/kmp_tasking.cpp
 1071     KMP_ATOMIC_ST_REL(&task->td_incomplete_child_tasks, 0);
 1073     KMP_ATOMIC_ST_REL(&task->td_allocated_child_tasks, 0);
 1275   KMP_ATOMIC_ST_RLX(&taskdata->td_untied_count, 0);
 1316   KMP_ATOMIC_ST_RLX(&taskdata->td_incomplete_child_tasks, 0);
 1318   KMP_ATOMIC_ST_RLX(&taskdata->td_allocated_child_tasks, 1);
 2405   KMP_ATOMIC_ST_RLX(&tg_new->count, 0);
 2406   KMP_ATOMIC_ST_RLX(&tg_new->cancel_request, cancel_noreq);
 2525         KMP_ATOMIC_ST_REL(&t->t.t_tg_fini_counter[0], 0);
 2543         KMP_ATOMIC_ST_REL(&t->t.t_tg_fini_counter[1], 0);
 3337   KMP_ATOMIC_ST_REL(&task_team->tt.tt_unfinished_threads, nthreads);
 3497         KMP_ATOMIC_ST_REL(&task_team->tt.tt_unfinished_threads,
projects/openmp/runtime/src/z_Linux_util.cpp
 1408     KMP_ATOMIC_ST_REL(&th->th.th_suspend_init_count, new_value);
tools/lldb/source/Utility/Log.cpp
   93     m_options.store(options, std::memory_order_relaxed);
tools/lldb/source/Utility/Timer.cpp
   43   m_nanos.store(0, std::memory_order_release);
   44   m_nanos_total.store(0, std::memory_order_release);
   45   m_count.store(0, std::memory_order_release);
  123     i->m_nanos.store(0, std::memory_order_release);
  124     i->m_nanos_total.store(0, std::memory_order_release);
  125     i->m_count.store(0, std::memory_order_release);
usr/include/c++/7.4.0/atomic
  103     { _M_base.store(__i, __m); }
 1072     { __a->store(__i, __m); }
usr/include/c++/7.4.0/bits/atomic_base.h
  267 	store(__i);