Home
last modified time | relevance | path

Searched refs:self_ticks (Results 1 – 4 of 4) sorted by relevance

/external/v8/test/cctest/
Dtest-profile-generator.cc141 CHECK_EQ(0u, node1->self_ticks()); in TEST()
147 CHECK_EQ(0u, node2->self_ticks()); in TEST()
154 CHECK_EQ(1u, node3->self_ticks()); in TEST()
160 CHECK_EQ(0u, node1->self_ticks()); in TEST()
161 CHECK_EQ(0u, node2->self_ticks()); in TEST()
162 CHECK_EQ(2u, node3->self_ticks()); in TEST()
175 CHECK_EQ(2u, node3->self_ticks()); in TEST()
179 CHECK_EQ(1u, node4->self_ticks()); in TEST()
186 CHECK_EQ(0u, empty_tree.root()->self_ticks()); in TEST()
188 CHECK_EQ(1u, empty_tree.root()->self_ticks()); in TEST()
[all …]
/external/v8/tools/
Dll_prof.py102 self.self_ticks = 0
129 return self.self_ticks > 0 or self.callee_ticks is not None
132 self.self_ticks += 1
176 percent = 100.0 * count / self.self_ticks
190 assert total_count == self.self_ticks, \
191 "Lost ticks (%d != %d) in %s" % (total_count, self.self_ticks, self)
809 used_code.sort(key=lambda x: x.self_ticks, reverse=True)
811 code_ticks = code.self_ticks
829 if code.self_ticks < 10:
/external/v8/src/profiler/
Dprofile-generator.h194 unsigned self_ticks() const { return self_ticks_; } in self_ticks() function
/external/v8/src/
Dapi.cc8303 return reinterpret_cast<const i::ProfileNode*>(this)->self_ticks(); in GetHitCount()