Home
last modified time | relevance | path

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

/external/v8/test/mjsunit/
Ddebug-conditional-breakpoints.js56 assertEquals(0, Debug.findBreakPoint(bp, false).hit_count());
64 assertEquals(0, Debug.findBreakPoint(bp, false).hit_count());
72 assertEquals(1, Debug.findBreakPoint(bp, false).hit_count());
80 assertEquals(1, Debug.findBreakPoint(bp, false).hit_count());
86 assertEquals(1, Debug.findBreakPoint(bp, false).hit_count());
94 assertEquals(1, Debug.findBreakPoint(bp, false).hit_count());
98 assertEquals(1, Debug.findBreakPoint(bp, false).hit_count());
102 assertEquals(2, Debug.findBreakPoint(bp, false).hit_count());
110 assertEquals(0, Debug.findBreakPoint(bp, false).hit_count());
114 assertEquals(1, Debug.findBreakPoint(bp, false).hit_count());
[all …]
/external/compiler-rt/lib/tsan/rtl/
Dtsan_suppressions.cc105 atomic_fetch_add(&(*sp)->hit_count, 1, memory_order_relaxed); in IsSuppressed()
143 atomic_fetch_add(&s->hit_count, 1, memory_order_relaxed); in IsSuppressed()
156 int hit_count = 0; in PrintMatchedSuppressions() local
158 hit_count += atomic_load_relaxed(&matched[i]->hit_count); in PrintMatchedSuppressions()
159 Printf("ThreadSanitizer: Matched %d suppressions (pid=%d):\n", hit_count, in PrintMatchedSuppressions()
162 Printf("%d %s:%s\n", matched[i]->hit_count, matched[i]->type, in PrintMatchedSuppressions()
Dtsan_interface_ann.cc159 int *unique_count, int *hit_count, atomic_uintptr_t ExpectRace::*counter) { in CollectMatchedBenignRaces() argument
166 *hit_count += cnt; in CollectMatchedBenignRaces()
185 int hit_count = 0; in PrintMatchedBenignRaces() local
188 CollectMatchedBenignRaces(&hit_matched, &unique_count, &hit_count, in PrintMatchedBenignRaces()
195 hit_count, (int)internal_getpid()); in PrintMatchedBenignRaces()
Dtsan_rtl_report.cc534 atomic_fetch_add(&s->supp->hit_count, 1, memory_order_relaxed); in IsFiredSuppression()
550 atomic_fetch_add(&s->supp->hit_count, 1, memory_order_relaxed); in IsFiredSuppression()
/external/iptables/extensions/
Dlibxt_recent.c43 .flags = XTOPT_PUT, XTOPT_POINTER(s, hit_count)},
69 .flags = XTOPT_PUT, XTOPT_POINTER(s, hit_count)},
199 if(info->hit_count) printf(" hit_count: %d", info->hit_count); in recent_print()
239 if(info->hit_count) printf(" --hitcount %d", info->hit_count); in recent_save()
/external/kernel-headers/original/uapi/linux/netfilter/
Dxt_recent.h28 __u32 hit_count; member
37 __u32 hit_count; member
/external/iptables/include/linux/netfilter/
Dxt_recent.h28 __u32 hit_count; member
37 __u32 hit_count; member
/external/compiler-rt/lib/lsan/
Dlsan_common.cc383 &matched[i]->hit_count)), matched[i]->weight, matched[i]->templ); in PrintMatchedSuppressions()
511 leaks_[i].hit_count++; in AddLeakedChunk()
565 leaks_[index].total_size, leaks_[index].hit_count); in PrintReportForLeak()
592 allocations += leaks_[i].hit_count; in PrintSummary()
605 atomic_store_relaxed(&s->hit_count, atomic_load_relaxed(&s->hit_count) + in ApplySuppressions()
606 leaks_[i].hit_count); in ApplySuppressions()
Dlsan_common.h63 uptr hit_count; member
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_suppressions.h26 atomic_uint32_t hit_count; member
Dsanitizer_suppressions.cc164 if (atomic_load_relaxed(&suppressions_[i].hit_count)) in GetMatched()
/external/v8/include/
Dv8-profiler.h59 unsigned int hit_count; member
/external/v8/src/debug/
Ddebug.js172 BreakPoint.prototype.hit_count = function() { method in BreakPoint
365 ScriptBreakPoint.prototype.hit_count = function() { method in ScriptBreakPoint
1720 hit_count: break_point.hit_count(), property
/external/v8/test/cctest/
Dtest-cpu-profiler.cc1153 int hit_count = 10; in TEST() local
1154 for (int i = 0; i < hit_count; i++) func_node->IncrementLineTicks(hit_line); in TEST()
1163 value = entries[i].hit_count; in TEST()
1166 CHECK_EQ(hit_count, value); in TEST()
/external/v8/src/profiler/
Dprofile-generator.cc199 entry->hit_count = in GetLineTicks()