| /tools/perf/ui/ |
| D | browser.c | 655 void __ui_browser__vline(struct ui_browser *browser, unsigned int column, in __ui_browser__vline() argument 659 ui_browser__gotorc(browser, start, column); in __ui_browser__vline() 673 unsigned int column, in __ui_browser__line_arrow_up() argument 682 ui_browser__gotorc(browser, row, column); in __ui_browser__line_arrow_up() 684 ui_browser__gotorc(browser, row, column + 1); in __ui_browser__line_arrow_up() 697 ui_browser__gotorc(browser, end_row, column); in __ui_browser__line_arrow_up() 700 ui_browser__gotorc(browser, end_row, column); in __ui_browser__line_arrow_up() 703 ui_browser__gotorc(browser, end_row, column + 1); in __ui_browser__line_arrow_up() 705 ui_browser__gotorc(browser, end_row, column + 2); in __ui_browser__line_arrow_up() 713 unsigned int column, in __ui_browser__line_arrow_down() argument [all …]
|
| D | browser.h | 51 void __ui_browser__line_arrow(struct ui_browser *browser, unsigned int column, 53 void ui_browser__mark_fused(struct ui_browser *browser, unsigned int column, 64 void __ui_browser__vline(struct ui_browser *browser, unsigned int column,
|
| /tools/testing/selftests/bpf/prog_tests/ |
| D | ctx_rewrite.c | 400 int column = 0; in print_match_error() local 407 mark1 = column; in print_match_error() 410 ++column; in print_match_error() 413 mark1 = column; in print_match_error() 416 while (column < middle) { in print_match_error() 418 ++column; in print_match_error() 421 column += 3; in print_match_error() 426 mark2 = column; in print_match_error() 429 ++column; in print_match_error() 432 mark2 = column; in print_match_error() [all …]
|
| /tools/perf/Documentation/ |
| D | perf-diff.txt | 45 of the Baseline/Delta column. See --percentage for more info. 51 of the Baseline/Delta column. See --percentage for more info. 57 of the Baseline/Delta column. See --percentage for more info. 113 Specify compute sorting column number. 0 means sorting by baseline 114 overhead and 1 (default) means sorting by computed value of column 1 197 baseline entry, are displayed with empty space within baseline column 198 and possible computation results (delta) in their related column. 246 If specified the 'Delta' column is displayed with value 'd' computed as: 267 If specified the 'Ratio' column is displayed with value 'r' computed as: 279 If specified the 'Weighted diff' column is displayed with value 'd' computed as: [all …]
|
| D | perf-top.txt | 148 Show a column with the number of samples. 151 Show a column with the sum of periods. 155 percentage of the overhead column. See --percentage for more info. 159 percentage of the overhead column. See --percentage for more info. 163 percentage of the overhead column. See --percentage for more info. 197 show up in the output. The output will have a new "Children" column 229 --column-widths=<width[,width...]>:: 230 Force each column width to the provided list, for large terminal
|
| D | perf-report.txt | 47 the overhead column. See --percentage for more info. 57 the overhead column. See --percentage for more info. 62 the overhead column. See --percentage for more info. 150 and column "IPC coverage" reports the percentage of instructions with 180 - trace: pretty printed trace output in a single column 229 --column-widths=<width[,width...]>:: 230 Force each column width to the provided list, for large terminal 254 - flat: single column, linear exposure of call chains. 290 show up in the output. The output will have a new "Children" column 371 --show-total-period:: Show a column with the sum of periods.
|
| D | perf-config.txt | 426 This option controls display of column headers (like 'Overhead' and 'Symbol') 469 If 'flat' is used, single column and linear exposure of call chains. 523 Example output with this turned on, notice that there is one column 546 command will have 'Children' overhead column as well as 'Self' overhead 547 column by default.
|
| D | perf-annotate.txt | 107 --show-total-period:: Show a column with the sum of periods.
|
| D | jitdump-specification.txt | 129 * uint32_t discrim : column discriminator, 0 is default
|
| D | perf-c2c.txt | 107 Do not display Source:Line column.
|
| D | perf-stat.txt | 557 Don't print 'summary' at the first column for CVS summary output.
|
| /tools/testing/selftests/net/tcp_ao/lib/ |
| D | proc.c | 59 char *column; in lookup_get_column() local 61 column = strchr(line, ':'); in lookup_get_column() 62 if (!column) in lookup_get_column() 65 return lookup_get(ns, line, column - line); in lookup_get_column()
|
| /tools/perf/ui/gtk/ |
| D | hists.c | 343 GtkTreeViewColumn *column; in perf_gtk__show_hists() local 345 column = gtk_tree_view_get_column(GTK_TREE_VIEW(view), col_idx); in perf_gtk__show_hists() 346 gtk_tree_view_column_set_resizable(column, TRUE); in perf_gtk__show_hists() 350 column); in perf_gtk__show_hists() 569 GtkTreeViewColumn *column; in perf_gtk__show_hierarchy() local 571 column = gtk_tree_view_get_column(GTK_TREE_VIEW(view), col_idx); in perf_gtk__show_hierarchy() 572 gtk_tree_view_column_set_resizable(column, TRUE); in perf_gtk__show_hierarchy() 576 column); in perf_gtk__show_hierarchy()
|
| /tools/perf/scripts/python/ |
| D | exported-sql-viewer.py | 252 def index(self, row, column, parent): argument 254 return self.createIndex(row, column, child_item) 257 return item.getData(index.column()) 265 def columnAlignment(self, column): argument 268 def columnFont(self, column): argument 273 return self.columnAlignment(index.column()) 275 return self.columnFont(index.column()) 309 def index(self, row, column, parent): argument 310 return self.createIndex(row, column, self.child_items[row]) 313 return item.getData(index.column()) [all …]
|
| D | gecko.py | 76 column: None 171 column=None,
|
| /tools/perf/ |
| D | builtin-list.c | 89 int column = start; in wordwrap() local 98 if ((column + wlen >= max && column > start) || saw_newline) { in wordwrap() 100 column = start + corr; in wordwrap() 102 if (column <= start) in wordwrap() 110 column += n; in wordwrap()
|
| /tools/perf/ui/browsers/ |
| D | hists.c | 1325 int column = 0; in hist_browser__show_entry() local 1338 column++ < browser->b.horiz_scroll) in hist_browser__show_entry() 1419 int column = 0; in hist_browser__show_hierarchy_entry() local 1458 column++ < browser->b.horiz_scroll) in hist_browser__show_hierarchy_entry() 1499 if (column >= browser->b.horiz_scroll) { in hist_browser__show_hierarchy_entry() 1574 int column = 0; in hist_browser__show_no_entry() local 1600 column++ < browser->b.horiz_scroll) in hist_browser__show_no_entry() 1621 if (column >= browser->b.horiz_scroll) { in hist_browser__show_no_entry() 1654 int column = 0; in hists_browser__scnprintf_headers() local 1664 if (perf_hpp__should_skip(fmt, hists) || column++ < browser->b.horiz_scroll) in hists_browser__scnprintf_headers() [all …]
|
| /tools/testing/selftests/bpf/ |
| D | README.rst | 38 These files are organized in three columns. The first column lists the test in 41 classify the entry: column two is a copy and paste of the error being reported 42 when running the test in the setting in question. The third column, if
|
| /tools/testing/kunit/android/ |
| D | README | 126 the `Used by` column. You can not remove a module with `adb shell rmmod` if it
|
| /tools/perf/util/ |
| D | pmu.c | 1564 int column) in check_info_data() argument 1573 parse_events_error__handle(err, column, in check_info_data() 1579 parse_events_error__handle(err, column, in check_info_data() 1585 parse_events_error__handle(err, column, in check_info_data()
|
| D | parse-events.c | 520 const char *sys, const char *name, int column) in tracepoint_error() argument 547 parse_events_error__handle(e, column, strdup(str), strdup(help)); in tracepoint_error()
|
| /tools/bpf/bpftool/Documentation/ |
| D | bpftool-prog.rst | 109 column will also be displayed. 121 **linum** is specified, the filename, line number and line column will also
|
| /tools/power/x86/turbostat/ |
| D | turbostat.c | 5740 int column, retval; in snapshot_proc_interrupts() local 5748 for (column = 0; column < topo.num_cpus; ++column) { in snapshot_proc_interrupts() 5760 irq_column_2_cpu[column] = cpu_number; in snapshot_proc_interrupts() 5766 int column; in snapshot_proc_interrupts() local 5774 for (column = 0; column < topo.num_cpus; ++column) { in snapshot_proc_interrupts() 5782 cpu_number = irq_column_2_cpu[column]; in snapshot_proc_interrupts()
|
| /tools/power/pm-graph/ |
| D | bootgraph.py | 647 table.fstat {table-layout:fixed;padding:150px 15px 0 0;font-size:10px;column-width:30px;}\n\
|
| /tools/testing/cxl/test/ |
| D | mem.c | 431 .column = {0xDE, 0xAD},
|