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

References

include/llvm/ADT/IntrusiveRefCntPtr.h
   94   void Retain() const { RefCount.fetch_add(1, std::memory_order_relaxed); }
include/llvm/ADT/Statistic.h
   80     Value.fetch_add(1, std::memory_order_relaxed);
   86     return Value.fetch_add(1, std::memory_order_relaxed);
  102     Value.fetch_add(V, std::memory_order_relaxed);
projects/openmp/runtime/src/kmp_lock.cpp
 2234   kmp_uint64 ticket = KMP_ATOMIC_INC(&lck->lk.next_ticket);
projects/openmp/runtime/src/kmp_runtime.cpp
 1591       KMP_ATOMIC_INC(&root->r.r_in_parallel);
 1955       KMP_ATOMIC_INC(&root->r.r_in_parallel);
 5633     KMP_ATOMIC_INC(&__kmp_thread_pool_active_nth);
projects/openmp/runtime/src/kmp_taskdeps.cpp
   51   KMP_ATOMIC_INC(&node->dn.nrefs);
  479       node->dn.npredecessors.fetch_add(npredecessors) + npredecessors;
projects/openmp/runtime/src/kmp_tasking.cpp
  337     kmp_int32 counter = 1 + KMP_ATOMIC_INC(&taskdata->td_untied_count);
  613     kmp_int32 counter = 1 + KMP_ATOMIC_INC(&taskdata->td_untied_count);
 1338     KMP_ATOMIC_INC(&parent_task->td_incomplete_child_tasks);
 1340       KMP_ATOMIC_INC(&parent_task->td_taskgroup->count);
 1344       KMP_ATOMIC_INC(&taskdata->td_parent->td_allocated_child_tasks);
 2516       cnt = KMP_ATOMIC_INC(&t->t.t_tg_fini_counter[0]);
 2535       cnt = KMP_ATOMIC_INC(&t->t.t_tg_fini_counter[1]);
 2749     count = KMP_ATOMIC_INC(unfinished_threads);
 3723   KMP_ATOMIC_INC(&taskdata->td_incomplete_child_tasks);
 3933     KMP_ATOMIC_INC(&parent_task->td_incomplete_child_tasks);
 3935       KMP_ATOMIC_INC(&parent_task->td_taskgroup->count);
 3939       KMP_ATOMIC_INC(&taskdata->td_parent->td_allocated_child_tasks);
projects/openmp/runtime/src/kmp_wait_release.h
  470         KMP_ATOMIC_INC(unfinished_threads);
  706   void internal_release() { KMP_ATOMIC_ADD(this->get(), 4); }
projects/openmp/runtime/src/z_Linux_util.cpp
 1564         KMP_ATOMIC_INC(&__kmp_thread_pool_active_nth);
tools/lldb/source/Host/common/TaskPool.cpp
  110       size_t i = idx.fetch_add(1);
usr/include/c++/7.4.0/atomic
 1214     { return __a->fetch_add(__i, __m); }
usr/include/c++/7.4.0/bits/atomic_base.h
  280       { return fetch_add(1); }