Home
last modified time | relevance | path

Searched refs:branch_count (Results 1 – 5 of 5) sorted by relevance

/linux-4.4.14/tools/perf/scripts/python/
Dcall-graph-from-postgresql.py75 self.branch_count = 0
131 if not self.branch_count:
133 x = (b * Decimal(100)) / self.branch_count
136 def addChild(self, call_path_id, name, dso, count, time, branch_count): argument
141 child_item.branch_count = branch_count
150 child_item.data[5] = str(branch_count)
151 child_item.data[6] = self.branchPercent(branch_count)
170 branch_count = 0
177 branch_count += query.value(2)
181 self.addChild(last_call_path_id, name, dso, count, time, branch_count)
[all …]
Dexport-to-postgresql.py709 def call_return_table(cr_id, thread_id, comm_id, call_path_id, call_time, return_time, branch_count argument
711 …ead_id, 8, comm_id, 8, call_path_id, 8, call_time, 8, return_time, 8, branch_count, 8, call_id, 8,…
/linux-4.4.14/tools/perf/util/
Dthread-stack.c78 u64 branch_count; member
101 u64 branch_count; member
211 cr.branch_count = ts->branch_count - tse->branch_count; in thread_stack__call_return()
486 tse->branch_count = ts->branch_count; in thread_stack__push_cp()
714 ts->branch_count += 1; in thread_stack__process()
Dthread-stack.h64 u64 branch_count; member
/linux-4.4.14/tools/perf/util/scripting-engines/
Dtrace-event-python.c747 tuple_set_u64(t, 6, cr->branch_count); in python_export_call_return()