Home
last modified time | relevance | path

Searched refs:hit_count (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.cpp102 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 Dtsan_rtl_report.cpp680 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 Dlsan_common.cpp92 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 Dlsan_common.h202 uptr hit_count; member
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpointList.cpp190 uint32_t hit_count = 0; in GetHitCount() local
194 hit_count += (*pos)->GetHitCount(); in GetHitCount()
195 return hit_count; in GetHitCount()
H A DBreakpointLocationList.cpp171 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 Dsanitizer_suppressions.h25 atomic_uint32_t hit_count; member
H A Dsanitizer_suppressions.cpp181 if (atomic_load_relaxed(&suppressions_[i].hit_count)) in GetMatched()