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

References

projects/openmp/runtime/src/kmp_threadprivate.cpp
  633       tp_cache_addr = __kmp_find_cache(data);
  634       if (!tp_cache_addr) { // Cache was never created; do it now
  646         tp_cache_addr = (kmp_cached_addr_t *)&my_cache[__kmp_tp_capacity];
  647         tp_cache_addr->addr = my_cache;
  648         tp_cache_addr->data = data;
  649         tp_cache_addr->compiler_cache = cache;
  650         tp_cache_addr->next = __kmp_threadpriv_cache_list;
  651         __kmp_threadpriv_cache_list = tp_cache_addr;
  653         my_cache = tp_cache_addr->addr;
  654         tp_cache_addr->compiler_cache = cache;