Home
last modified time | relevance | path

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

/third_party/node/deps/v8/tools/
Dll_prof.py106 self.self_ticks = 0
133 return self.self_ticks > 0 or self.callee_ticks is not None
136 self.self_ticks += 1
180 percent = 100.0 * count / self.self_ticks
194 assert total_count == self.self_ticks, \
195 "Lost ticks (%d != %d) in %s" % (total_count, self.self_ticks, self)
812 used_code.sort(key=lambda x: x.self_ticks, reverse=True)
814 code_ticks = code.self_ticks
832 if code.self_ticks < 10:
/third_party/node/deps/v8/src/profiler/
Dprofile-generator.h304 unsigned self_ticks() const { return self_ticks_; } in self_ticks() function
/third_party/node/deps/v8/src/api/
Dapi.cc9815 return reinterpret_cast<const i::ProfileNode*>(this)->self_ticks(); in GetHitCount()