Home
last modified time | relevance | path

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

/linux/tools/perf/ui/gtk/
H A Dhists.c302 int col_idx; in perf_gtk__show_hists() local
323 col_idx = 0; in perf_gtk__show_hists()
334 sym_col = col_idx; in perf_gtk__show_hists()
339 col_idx++, NULL); in perf_gtk__show_hists()
342 for (col_idx = 0; col_idx < nr_cols; col_idx++) { in perf_gtk__show_hists()
345 column = gtk_tree_view_get_column(GTK_TREE_VIEW(view), col_idx); in perf_gtk__show_hists()
348 if (col_idx == sym_col) { in perf_gtk__show_hists()
373 col_idx = 0; in perf_gtk__show_hists()
384 gtk_tree_store_set(store, &iter, col_idx++, s, -1); in perf_gtk__show_hists()
412 int col_idx = 0; in perf_gtk__add_hierarchy_entries() local
[all …]
/linux/include/linux/irqchip/
H A Darm-gic-v4.h85 u16 col_idx; member
/linux/drivers/scsi/aic7xxx/
H A Daic79xx.h123 #define AHD_SET_SCB_COL_IDX(scb, col_idx) \ argument
125 (scb)->hscb->scsiid = ((col_idx) << TID_SHIFT) & TID; \
126 (scb)->hscb->lun = ((col_idx) >> 4) & (AHD_NUM_LUNS_NONPKT-1); \
1356 struct scb *ahd_get_scb(struct ahd_softc *ahd, u_int col_idx);
H A Daic79xx_osm.c1546 u_int col_idx; in ahd_linux_run_command() local
1564 col_idx = AHD_NEVER_COL_IDX; in ahd_linux_run_command()
1566 col_idx = AHD_BUILD_COL_IDX(cmd->device->id, in ahd_linux_run_command()
1569 if ((scb = ahd_get_scb(ahd, col_idx)) == NULL) { in ahd_linux_run_command()
H A Daic79xx_core.c180 struct scb *scb, u_int col_idx);
6609 ahd_add_col_list(struct ahd_softc *ahd, struct scb *scb, u_int col_idx) in ahd_add_col_list() argument
6616 AHD_SET_SCB_COL_IDX(scb, col_idx); in ahd_add_col_list()
6617 free_list = &ahd->scb_data.free_scb_lists[col_idx]; in ahd_add_col_list()
6634 u_int col_idx; in ahd_rem_col_list() local
6637 col_idx = AHD_GET_SCB_COL_IDX(ahd, scb); in ahd_rem_col_list()
6638 free_list = &ahd->scb_data.free_scb_lists[col_idx]; in ahd_rem_col_list()
6663 ahd_get_scb(struct ahd_softc *ahd, u_int col_idx) in ahd_get_scb() argument
6671 if (AHD_GET_SCB_COL_IDX(ahd, scb) != col_idx) { in ahd_get_scb()
6684 if (col_idx != AHD_NEVER_COL_IDX in ahd_get_scb()
[all …]