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

References

projects/openmp/runtime/src/kmp_lock.cpp
 2236   std::atomic<kmp_uint64> *polls = lck->lk.polls;
 2264     polls = lck->lk.polls; // atomic load
 2346       lck->lk.polls = polls; // atomic store
 2394   std::atomic<kmp_uint64> *polls = lck->lk.polls;
 2439   std::atomic<kmp_uint64> *polls = lck->lk.polls; // atomic load
 2474   lck->lk.polls = (std::atomic<kmp_uint64> *)__kmp_allocate(
 2475       lck->lk.num_polls * sizeof(*(lck->lk.polls)));
 2490   if (lck->lk.polls.load() != NULL) {
 2491     __kmp_free(lck->lk.polls.load());
 2492     lck->lk.polls = NULL;