Searched refs:hit_count (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_suppressions.cpp | 102 atomic_fetch_add(&(*sp)->hit_count, 1, memory_order_relaxed); in IsSuppressed() 140 atomic_fetch_add(&s->hit_count, 1, memory_order_relaxed); in IsSuppressed() 153 int hit_count = 0; in PrintMatchedSuppressions() local 155 hit_count += atomic_load_relaxed(&matched[i]->hit_count); in PrintMatchedSuppressions() 156 Printf("ThreadSanitizer: Matched %d suppressions (pid=%d):\n", hit_count, in PrintMatchedSuppressions() 159 Printf("%d %s:%s\n", atomic_load_relaxed(&matched[i]->hit_count), in PrintMatchedSuppressions()
|
H A D | tsan_rtl_report.cpp | 680 atomic_fetch_add(&s->supp->hit_count, 1, memory_order_relaxed); in IsFiredSuppression() 696 atomic_fetch_add(&s->supp->hit_count, 1, memory_order_relaxed); in IsFiredSuppression()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/ |
H A D | lsan_common.cpp | 92 bool SuppressByRule(const StackTrace &stack, uptr hit_count, uptr total_size); 99 bool Suppress(u32 stack_trace_id, uptr hit_count, uptr total_size); 215 uptr hit_count, uptr total_size) { in SuppressByRule() argument 221 atomic_fetch_add(&s->hit_count, hit_count, memory_order_relaxed); in SuppressByRule() 228 bool LeakSuppressionContext::Suppress(u32 stack_trace_id, uptr hit_count, in Suppress() argument 232 if (!SuppressInvalid(stack) && !SuppressByRule(stack, hit_count, total_size)) in Suppress() 691 static_cast<uptr>(atomic_load_relaxed(&matched[i]->hit_count)), in PrintMatchedSuppressions() 865 leaks_[i].hit_count++; in AddLeakedChunks() 925 leaks_[index].total_size, leaks_[index].hit_count); in PrintReportForLeak() 954 allocations += leaks_[i].hit_count; in PrintSummary() [all …]
|
H A D | lsan_common.h | 202 uptr hit_count; 198 uptr hit_count; global() member
|
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | WatchpointList.cpp | 190 uint32_t hit_count = 0; in GetHitCount() 194 hit_count += (*pos)->GetHitCount(); 195 return hit_count; in ShouldStop() 187 uint32_t hit_count = 0; GetHitCount() local
|
H A D | BreakpointLocationList.cpp | 171 uint32_t hit_count = 0; in GetHitCount() local 175 hit_count += (*pos)->GetHitCount(); in GetHitCount() 176 return hit_count; in GetHitCount()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_suppressions.h | 25 atomic_uint32_t hit_count; member
|
H A D | sanitizer_suppressions.cpp | 181 if (atomic_load_relaxed(&suppressions_[i].hit_count)) in GetMatched()
|