Lines Matching +full:integer +full:- +full:n

2 # SPDX-License-Identifier: GPL-2.0
27 '/scripts/python/Perf-Trace-Util/lib/Perf/Trace')
42 print("In trace_begin:\n")
61 flags integer,
62 ip integer,
63 status integer,
64 dse integer,
65 dla integer,
66 lat integer
107 print("In trace_end:\n")
132 print("Statistics about the general events grouped by thread/symbol/dso: \n")
135 …commq = con.execute("select comm, count(comm) from gen_events group by comm order by -count(comm)")
136 print("\n%16s %8s %16s\n%s" % ("comm", "number", "histogram", "="*42))
141 print("\n%32s %8s %16s\n%s" % ("symbol", "number", "histogram", "="*58))
142 …con.execute("select symbol, count(symbol) from gen_events group by symbol order by -count(symbol)")
147 print("\n%40s %8s %16s\n%s" % ("dso", "number", "histogram", "="*74))
148 … dsoq = con.execute("select dso, count(dso) from gen_events group by dso order by -count(dso)")
165 … print("Statistics about the PEBS Load Latency events grouped by thread/symbol/dse/latency: \n")
168 … commq = con.execute("select comm, count(comm) from pebs_ll group by comm order by -count(comm)")
169 print("\n%16s %8s %16s\n%s" % ("comm", "number", "histogram", "="*42))
174 print("\n%32s %8s %16s\n%s" % ("symbol", "number", "histogram", "="*58))
175 …symbolq = con.execute("select symbol, count(symbol) from pebs_ll group by symbol order by -count(s…
180 dseq = con.execute("select dse, count(dse) from pebs_ll group by dse order by -count(dse)")
181 print("\n%32s %8s %16s\n%s" % ("dse", "number", "histogram", "="*58))
187 print("\n%32s %8s %16s\n%s" % ("latency", "number", "histogram", "="*58))