| /tools/testing/selftests/bpf/progs/ |
| A D | iters.c | 398 int sum, row, col; in iter_nested_iters() local 404 arr2d[row][col] = row * col; in iter_nested_iters() 422 arr2d_col_sums[col] += arr2d[row][col]; in iter_nested_iters() 432 col, arr2d_col_sums[col], in iter_nested_iters() 466 int col; in fill_inner_dimension() local 469 arr2d[row][col] = row * col; in fill_inner_dimension() 475 int sum = 0, col; in sum_inner_dimension() local 478 sum += arr2d[row][col]; in sum_inner_dimension() 480 arr2d_col_sums[col] += arr2d[row][col]; in sum_inner_dimension() 490 int sum, row, col; in iter_subprog_iters() local [all …]
|
| /tools/perf/ui/gtk/ |
| A D | hists.c | 98 GtkTreeIter *parent, int col, u64 total) in perf_gtk__add_callchain_flat() argument 125 gtk_tree_store_set(store, &iter, col, buf, -1); in perf_gtk__add_callchain_flat() 146 gtk_tree_store_set(store, &iter, col, buf, -1); in perf_gtk__add_callchain_flat() 161 GtkTreeIter *parent, int col, u64 total) in perf_gtk__add_callchain_folded() argument 214 gtk_tree_store_set(store, &iter, col, str, -1); in perf_gtk__add_callchain_folded() 221 GtkTreeIter *parent, int col, u64 total) in perf_gtk__add_callchain_graph() argument 247 gtk_tree_store_set(store, &iter, col, buf, -1); in perf_gtk__add_callchain_graph() 271 GtkTreeIter *parent, int col, u64 total) in perf_gtk__add_callchain() argument 274 perf_gtk__add_callchain_flat(root, store, parent, col, total); in perf_gtk__add_callchain() 278 perf_gtk__add_callchain_graph(root, store, parent, col, total); in perf_gtk__add_callchain() [all …]
|
| /tools/bootconfig/ |
| A D | main.c | 250 int lin = 1, col, i; in show_xbc_error() local 258 col = pos + 1; in show_xbc_error() 262 col = pos - i; in show_xbc_error() 265 pr_err("Parse Error: %s at %d:%d\n", msg, lin, col); in show_xbc_error()
|
| /tools/tracing/rtla/tests/ |
| A D | engine.sh | 70 echo "$result" | col -b | while read line; do echo "# $line"; done
|
| /tools/testing/selftests/kvm/lib/arm64/ |
| A D | gic_v3_its.c | 161 static void its_encode_collection(struct its_cmd_block *cmd, u16 col) in its_encode_collection() argument 163 its_mask_encode(&cmd->raw_cmd[2], col, 15, 0); in its_encode_collection()
|
| /tools/perf/util/ |
| A D | sort.h | 146 int hpp_dimension__add_output(unsigned col, bool implicit);
|
| A D | hist.c | 49 u16 hists__col_len(struct hists *hists, enum hist_column col) in hists__col_len() argument 51 return hists->col_len[col]; in hists__col_len() 54 void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len) in hists__set_col_len() argument 56 hists->col_len[col] = len; in hists__set_col_len() 59 bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len) in hists__new_col_len() argument 61 if (len > hists__col_len(hists, col)) { in hists__new_col_len() 62 hists__set_col_len(hists, col, len); in hists__new_col_len() 70 enum hist_column col; in hists__reset_col_len() local 72 for (col = 0; col < HISTC_NR_COLS; ++col) in hists__reset_col_len() 73 hists__set_col_len(hists, col, 0); in hists__reset_col_len()
|
| A D | hist.h | 425 u16 hists__col_len(struct hists *hists, enum hist_column col); 426 void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len); 427 bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len);
|
| A D | sort.c | 3610 int hpp_dimension__add_output(unsigned col, bool implicit) in hpp_dimension__add_output() argument 3614 BUG_ON(col >= PERF_HPP__MAX_INDEX); in hpp_dimension__add_output() 3615 hd = &hpp_sort_dimensions[col]; in hpp_dimension__add_output()
|
| /tools/perf/ |
| A D | builtin-diff.c | 1052 int col; in data__free() local 1057 for (col = 0; col < PERF_HPP_DIFF__MAX_INDEX; col++) { in data__free() 1058 struct diff_hpp_fmt *fmt = &d->fmt[col]; in data__free()
|
| /tools/perf/ui/ |
| A D | browser.c | 323 col = browser->width, in ui_browser__scrollbar_set() local 334 ui_browser__gotorc(browser, row++, col); in ui_browser__scrollbar_set()
|
| /tools/testing/selftests/bpf/ |
| A D | veristat.c | 2641 int col = 0, cnt = 0; in parse_stats_csv() local 2669 if (col >= specs->spec_cnt) { in parse_stats_csv() 2671 col, *stat_cntp, filename); in parse_stats_csv() 2675 err = parse_stat_value(next, specs->ids[col], st); in parse_stats_csv() 2678 col++; in parse_stats_csv() 2686 if (col < specs->spec_cnt) { in parse_stats_csv()
|
| /tools/perf/scripts/python/ |
| A D | exported-sql-viewer.py | 1970 col = index.column() 1971 if col == 0: 1973 if col == 1: 1975 if col == 2: 2862 def __init__(self, row, col, text, parent_item): argument 2865 self.data = [""] * (col + 1) 2866 self.data[col] = text 3880 for col in range(min_col, max_col + 1): 3881 val = model.headerData(col, Qt.Horizontal, Qt.DisplayRole) 3886 c = col - min_col [all …]
|