/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_suppressions.cc | 109 atomic_fetch_add(&(*sp)->hit_count, 1, memory_order_relaxed); 147 atomic_fetch_add(&s->hit_count, 1, memory_order_relaxed); 160 int hit_count = 0; local in function:__tsan::PrintMatchedSuppressions 162 hit_count += atomic_load_relaxed(&matched[i]->hit_count); 163 Printf("ThreadSanitizer: Matched %d suppressions (pid=%d):\n", hit_count, 166 Printf("%d %s:%s\n", atomic_load_relaxed(&matched[i]->hit_count),
|
tsan_interface_ann.cc | 160 int *unique_count, int *hit_count, atomic_uintptr_t ExpectRace::*counter) { 167 *hit_count += cnt; 186 int hit_count = 0; local in function:__tsan::PrintMatchedBenignRaces 189 CollectMatchedBenignRaces(&hit_matched, &unique_count, &hit_count, 196 hit_count, (int)internal_getpid());
|
tsan_rtl_report.cc | 553 atomic_fetch_add(&s->supp->hit_count, 1, memory_order_relaxed); 569 atomic_fetch_add(&s->supp->hit_count, 1, memory_order_relaxed);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_suppressions.h | 26 atomic_uint32_t hit_count; member in struct:__sanitizer::Suppression
|
sanitizer_suppressions.cc | 167 if (atomic_load_relaxed(&suppressions_[i].hit_count))
|
/src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
lsan_common.cc | 521 &matched[i]->hit_count)), matched[i]->weight, matched[i]->templ); 679 leaks_[i].hit_count++; 686 Leak leak = { next_id_++, /* hit_count */ 1, leaked_size, stack_trace_id, 733 leaks_[index].total_size, leaks_[index].hit_count); 760 allocations += leaks_[i].hit_count; 773 atomic_store_relaxed(&s->hit_count, atomic_load_relaxed(&s->hit_count) + 774 leaks_[i].hit_count);
|
lsan_common.h | 83 uptr hit_count; member in struct:__lsan::Leak
|