Home
last modified time | relevance | path

Searched refs:weight (Results 1 – 19 of 19) sorted by relevance

/tools/perf/tests/
Dsample-parsing.c121 COMP(weight); in samples_same()
181 .weight = 109, in do_test()
Dhists_link.c67 struct perf_sample sample = { .period = 1, .weight = 1, }; in add_hist_entries()
/tools/perf/util/
Dhist.c235 u64 weight) in he_stat__add_period() argument
239 he_stat->weight += weight; in he_stat__add_period()
251 dest->weight += src->weight; in he_stat__add_stat()
500 u64 weight = entry->stat.weight; in hists__findnew_entry() local
518 he_stat__add_period(&he->stat, period, weight); in hists__findnew_entry()
522 he_stat__add_period(he->stat_acc, period, weight); in hists__findnew_entry()
592 .weight = sample->weight, in __hists__add_entry()
673 cost = sample->weight; in iter_add_single_mem_entry()
789 sample->weight = bi->flags.cycles ? bi->flags.cycles : 1; in iter_add_next_branch_entry()
Dsort.h53 u64 weight; member
Devent.h188 u64 weight; member
Dsort.c1171 return he->stat.nr_events ? he->stat.weight / he->stat.nr_events : 0; in he_weight()
1196 return left->stat.weight - right->stat.weight; in sort__global_weight_cmp()
1202 return repsep_snprintf(bf, size, "%-*llu", width, he->stat.weight); in hist_entry__global_weight_snprintf()
Devsel.c1948 data->weight = *array; in perf_evsel__parse_sample()
2252 *array = sample->weight; in perf_event__synthesize_sample()
Ddata-convert-bt.c561 ret = value_set_u64(cw, event, "perf_weight", sample->weight); in add_generic_values()
Dsession.c1111 printf("... weight: %" PRIu64 "\n", sample->weight); in dump_sample()
/tools/perf/Documentation/
Dperf-report.txt71 pid, comm, dso, symbol, parent, cpu, socket, srcline, weight, local_weight.
87 - weight: Event specific weight, e.g. memory latency or transaction
88 abort cost. This is the global weight.
89 - local_weight: Local weight version of the weight above.
Dperf-diff.txt209 - WEIGHT-A being the weight of the data file
210 - WEIGHT-B being the weight of the baseline data file
Dperf-record.txt342 --weight::
343 Enable weightened sampling. An additional weight is recorded per sample and can be
344 displayed with the weight and local_weight sort keys. This currently works for TSX
Dperf-top.txt118 Sort by key(s): pid, comm, dso, symbol, parent, srcline, weight,
/tools/perf/scripts/python/
Dexport-to-postgresql.py709 …t, ip, time, cpu, to_dso_id, to_symbol_id, to_sym_offset, to_ip, period, weight, transaction, data… argument
713 …8, to_dso_id, 8, to_symbol_id, 8, to_sym_offset, 8, to_ip, 8, period, 8, weight, 8, transaction, 8…
/tools/hv/
Dhv_kvp_daemon.c883 int weight; in kvp_get_ip_info() local
966 weight = 0; in kvp_get_ip_info()
973 weight += hweight32(&w[i]); in kvp_get_ip_info()
975 sprintf(cidr_mask, "/%d", weight); in kvp_get_ip_info()
/tools/perf/
Dbuiltin-mem.c177 sample->weight, in dump_raw_samples()
Dbuiltin-annotate.c180 sample->weight = 1; in perf_evsel__add_sample()
Dbuiltin-script.c890 printf("%16" PRIu64, sample->weight); in process_event()
/tools/perf/util/scripting-engines/
Dtrace-event-python.c718 tuple_set_u64(t, 16, es->sample->weight); in python_export_sample()