Searched refs:self_ticks (Results 1 – 4 of 4) sorted by relevance
/external/v8/test/cctest/ |
D | test-profile-generator.cc | 137 CHECK_EQ(0, node1->self_ticks()); in TEST() 143 CHECK_EQ(0, node2->self_ticks()); in TEST() 150 CHECK_EQ(1, node3->self_ticks()); in TEST() 156 CHECK_EQ(0, node1->self_ticks()); in TEST() 157 CHECK_EQ(0, node2->self_ticks()); in TEST() 158 CHECK_EQ(2, node3->self_ticks()); in TEST() 171 CHECK_EQ(2, node3->self_ticks()); in TEST() 175 CHECK_EQ(1, node4->self_ticks()); in TEST() 196 CHECK_EQ(0, node1->self_ticks()); in TEST() 202 CHECK_EQ(0, node2->self_ticks()); in TEST() [all …]
|
/external/v8/tools/ |
D | ll_prof.py | 102 self.self_ticks = 0 129 return self.self_ticks > 0 or self.callee_ticks is not None 132 self.self_ticks += 1 176 count = 100.0 * count / self.self_ticks 182 assert total_count == self.self_ticks, \ 183 "Lost ticks (%d != %d) in %s" % (total_count, self.self_ticks, self) 821 used_code.sort(key=lambda x: x.self_ticks, reverse=True) 823 code_ticks = code.self_ticks 841 if code.self_ticks < 10:
|
/external/v8/src/ |
D | profile-generator.h | 119 unsigned self_ticks() const { return self_ticks_; } in self_ticks() function
|
D | api.cc | 7066 return reinterpret_cast<const i::ProfileNode*>(this)->self_ticks(); in GetHitCount()
|