/linux-4.4.14/drivers/uwb/ |
D | allocator.c | 26 int col, mas, safe_mas, unsafe_mas; in uwb_rsv_fill_column_alloc() local 31 for (col = ci->csi.start_col; col < UWB_NUM_ZONES; col += ci->csi.interval) { in uwb_rsv_fill_column_alloc() 37 if (bm[col * UWB_MAS_PER_ZONE + mas] == 0) { in uwb_rsv_fill_column_alloc() 48 bm[col * UWB_MAS_PER_ZONE + mas] = c; in uwb_rsv_fill_column_alloc() 56 int mas, col, rows; in uwb_rsv_fill_row_alloc() local 72 for (col = 0; col < UWB_NUM_ZONES; col++) { in uwb_rsv_fill_row_alloc() 73 if (bm[col * UWB_NUM_ZONES + mas] != UWB_RSV_MAS_NOT_AVAIL) { in uwb_rsv_fill_row_alloc() 74 bm[col * UWB_NUM_ZONES + mas] = c; in uwb_rsv_fill_row_alloc() 143 int deep, set, col, start_col_deep, col_start_set; in uwb_rsv_find_best_column_set() local 160 for (col = start_col; col < UWB_NUM_ZONES; col += interval) { in uwb_rsv_find_best_column_set() [all …]
|
/linux-4.4.14/drivers/input/keyboard/ |
D | omap-keypad.c | 70 int col; in set_col_gpio_val() local 72 for (col = 0; col < omap_kp->cols; col++) in set_col_gpio_val() 73 gpio_set_value(col_gpios[col], value & (1 << col)); in set_col_gpio_val() 109 int col = 0; in omap_kp_scan_keypad() local 116 for (col = 0; col < omap_kp->cols; col++) { in omap_kp_scan_keypad() 117 omap_writew(~(1 << col) & 0xff, in omap_kp_scan_keypad() 122 state[col] = ~omap_readw(OMAP1_MPUIO_BASE + in omap_kp_scan_keypad() 135 int col, row; in omap_kp_tasklet() local 142 for (col = 0; col < omap_kp_data->cols; col++) { in omap_kp_tasklet() 143 changed = new_state[col] ^ keypad_state[col]; in omap_kp_tasklet() [all …]
|
D | cros_ec_keyb.c | 111 int col, row; in cros_ec_keyb_process() local 128 for (col = 0; col < ckdev->cols; col++) { in cros_ec_keyb_process() 130 int pos = MATRIX_SCAN_CODE(row, col, ckdev->row_shift); in cros_ec_keyb_process() 133 new_state = kb_state[col] & (1 << row); in cros_ec_keyb_process() 134 old_state = ckdev->old_kb_state[col] & (1 << row); in cros_ec_keyb_process() 138 row, col, new_state); in cros_ec_keyb_process() 144 ckdev->old_kb_state[col] = kb_state[col]; in cros_ec_keyb_process() 218 int row, col; in cros_ec_keyb_compute_valid_keys() local 225 for (col = 0; col < ckdev->cols; col++) { in cros_ec_keyb_compute_valid_keys() 227 code = keymap[MATRIX_SCAN_CODE(row, col, row_shift)]; in cros_ec_keyb_compute_valid_keys() [all …]
|
D | matrix_keypad.c | 50 int col, bool on) in __activate_col() argument 55 gpio_direction_output(pdata->col_gpios[col], level_on); in __activate_col() 57 gpio_set_value_cansleep(pdata->col_gpios[col], !level_on); in __activate_col() 58 gpio_direction_input(pdata->col_gpios[col]); in __activate_col() 63 int col, bool on) in activate_col() argument 65 __activate_col(pdata, col, on); in activate_col() 74 int col; in activate_all_cols() local 76 for (col = 0; col < pdata->num_col_gpios; col++) in activate_all_cols() 77 __activate_col(pdata, col, on); in activate_all_cols() 124 int row, col, code; in matrix_keypad_scan() local [all …]
|
D | imx_keypad.c | 85 int col; in imx_keypad_scan_matrix() local 88 for (col = 0; col < MAX_MATRIX_KEY_COLS; col++) { in imx_keypad_scan_matrix() 89 if ((keypad->cols_en_mask & (1 << col)) == 0) in imx_keypad_scan_matrix() 117 reg_val &= ~(1 << (8 + col)); in imx_keypad_scan_matrix() 131 matrix_volatile_state[col] = (~reg_val) & keypad->rows_en_mask; in imx_keypad_scan_matrix() 151 int row, col; in imx_keypad_fire_events() local 153 for (col = 0; col < MAX_MATRIX_KEY_COLS; col++) { in imx_keypad_fire_events() 157 if ((keypad->cols_en_mask & (1 << col)) == 0) in imx_keypad_fire_events() 160 bits_changed = keypad->matrix_stable_state[col] ^ in imx_keypad_fire_events() 161 matrix_volatile_state[col]; in imx_keypad_fire_events() [all …]
|
D | twl4030_keypad.c | 163 static inline u16 twl4030_col_xlate(struct twl4030_keypad *kp, u8 col) in twl4030_col_xlate() argument 170 if (col == 0xFF) in twl4030_col_xlate() 173 return col & ((1 << kp->n_cols) - 1); in twl4030_col_xlate() 195 u16 col = key_state[i]; in twl4030_is_in_ghost_state() local 197 if ((col & check) && hweight16(col) > 1) in twl4030_is_in_ghost_state() 200 check |= col; in twl4030_is_in_ghost_state() 210 int col, row; in twl4030_kp_scan() local 233 for (col = 0; col < kp->n_cols + 1; col++) { in twl4030_kp_scan() 236 if (!(changed & (1 << col))) in twl4030_kp_scan() 239 dev_dbg(kp->dbg_dev, "key [%d:%d] %s\n", row, col, in twl4030_kp_scan() [all …]
|
D | clps711x-keypad.c | 42 int col, row; in clps711x_keypad_poll() local 44 for (col = 0; col < CLPS711X_KEYPAD_COL_COUNT; col++) { in clps711x_keypad_poll() 48 SYSCON1_KBDSCAN(8 + col)); in clps711x_keypad_poll() 62 if (test_bit(col, data->last_state) != state) { in clps711x_keypad_poll() 63 int code = MATRIX_SCAN_CODE(row, col, in clps711x_keypad_poll() 67 set_bit(col, data->last_state); in clps711x_keypad_poll() 71 clear_bit(col, data->last_state); in clps711x_keypad_poll()
|
D | samsung-keypad.c | 86 unsigned int col; in samsung_keypad_scan() local 89 for (col = 0; col < keypad->cols; col++) { in samsung_keypad_scan() 92 val &= ~(1 << col) << 8; in samsung_keypad_scan() 95 val &= ~(1 << col); in samsung_keypad_scan() 102 row_state[col] = ~val & ((1 << keypad->rows) - 1); in samsung_keypad_scan() 117 unsigned int col, row; in samsung_keypad_report() local 119 for (col = 0; col < keypad->cols; col++) { in samsung_keypad_report() 120 changed = row_state[col] ^ keypad->row_state[col]; in samsung_keypad_report() 121 key_down |= row_state[col]; in samsung_keypad_report() 129 pressed = row_state[col] & (1 << row); in samsung_keypad_report() [all …]
|
D | locomokbd.c | 102 static inline void locomokbd_activate_col(unsigned long membase, int col) in locomokbd_activate_col() argument 107 nset = 0xFF & ~(1 << col); in locomokbd_activate_col() 112 static inline void locomokbd_reset_col(unsigned long membase, int col) in locomokbd_reset_col() argument 116 nbset = ((0xFF & ~(1 << col)) << 8) + 0xFF; in locomokbd_reset_col() 129 unsigned int row, col, rowd; in locomokbd_scankeyboard() local 139 for (col = 0; col < KB_COLS; col++) { in locomokbd_scankeyboard() 141 locomokbd_activate_col(membase, col); in locomokbd_scankeyboard() 148 scancode = SCANCODE(col, row); in locomokbd_scankeyboard() 174 locomokbd_reset_col(membase, col); in locomokbd_scankeyboard()
|
D | nspire-keypad.c | 59 int row, col; in nspire_keypad_irq() local 81 for (col = 0; col < KEYPAD_BITMASK_COLS; col++) { in nspire_keypad_irq() 82 if (!(changed & (1U << col))) in nspire_keypad_irq() 85 code = MATRIX_SCAN_CODE(row, col, keypad->row_shift); in nspire_keypad_irq() 88 bits & (1U << col)); in nspire_keypad_irq()
|
D | stmpe-keypad.c | 170 int col = data & STMPE_KPC_DATA_COL; in stmpe_keypad_irq() local 171 int code = MATRIX_SCAN_CODE(row, col, STMPE_KEYPAD_ROW_SHIFT); in stmpe_keypad_irq() 308 int row, col; in stmpe_keypad_fill_used_pins() local 311 for (col = 0; col < used_cols; col++) { in stmpe_keypad_fill_used_pins() 312 int code = MATRIX_SCAN_CODE(row, col, in stmpe_keypad_fill_used_pins() 316 keypad->cols |= 1 << col; in stmpe_keypad_fill_used_pins()
|
D | pmic8xxx-keypad.c | 116 static u8 pmic8xxx_col_state(struct pmic8xxx_kp *kp, u8 col) in pmic8xxx_col_state() argument 119 if (col == 0x00) in pmic8xxx_col_state() 122 return col & ((1 << kp->num_cols) - 1); in pmic8xxx_col_state() 230 int row, col, code; in __pmic8xxx_kp_scan_matrix() local 238 for (col = 0; col < kp->num_cols; col++) { in __pmic8xxx_kp_scan_matrix() 239 if (!(bits_changed & (1 << col))) in __pmic8xxx_kp_scan_matrix() 242 dev_dbg(kp->dev, "key [%d:%d] %s\n", row, col, in __pmic8xxx_kp_scan_matrix() 243 !(new_state[row] & (1 << col)) ? in __pmic8xxx_kp_scan_matrix() 246 code = MATRIX_SCAN_CODE(row, col, PM8XXX_ROW_SHIFT); in __pmic8xxx_kp_scan_matrix() 251 !(new_state[row] & (1 << col))); in __pmic8xxx_kp_scan_matrix()
|
D | tca8418_keypad.c | 164 int error, col, row; in tca8418_read_keypad() local 176 col = code % TCA8418_MAX_COLS; in tca8418_read_keypad() 178 row = (col) ? row : row - 1; in tca8418_read_keypad() 179 col = (col) ? col - 1 : TCA8418_MAX_COLS - 1; in tca8418_read_keypad() 181 code = MATRIX_SCAN_CODE(row, col, keypad_data->row_shift); in tca8418_read_keypad()
|
D | nomadik-ske-keypad.c | 140 static void ske_keypad_report(struct ske_keypad *keypad, u8 status, int col) in ske_keypad_report() argument 155 code = MATRIX_SCAN_CODE(row, col, SKE_KEYPAD_ROW_SHIFT); in ske_keypad_report() 169 int col = 0; in ske_keypad_read_data() local 187 col = i * 2; in ske_keypad_read_data() 188 ske_keypad_report(keypad, status, col); in ske_keypad_read_data() 192 col = (i * 2) + 1; in ske_keypad_read_data() 193 ske_keypad_report(keypad, status, col); in ske_keypad_read_data()
|
D | omap4-keypad.c | 134 unsigned int col, row, code, changed; in omap4_keypad_irq_thread_fn() local 145 for (col = 0; col < keypad_data->cols; col++) { in omap4_keypad_irq_thread_fn() 146 if (changed & (1 << col)) { in omap4_keypad_irq_thread_fn() 147 code = MATRIX_SCAN_CODE(row, col, in omap4_keypad_irq_thread_fn() 152 key_state[row] & (1 << col)); in omap4_keypad_irq_thread_fn()
|
D | pxa27x_keypad.c | 415 int row, col, num_keys_pressed = 0; in pxa27x_keypad_scan_matrix() local 427 col = KPAS_CP(kpas); in pxa27x_keypad_scan_matrix() 431 if (col >= pdata->matrix_key_cols || in pxa27x_keypad_scan_matrix() 435 new_state[col] = (1 << row); in pxa27x_keypad_scan_matrix() 455 for (col = 0; col < pdata->matrix_key_cols; col++) { in pxa27x_keypad_scan_matrix() 459 bits_changed = keypad->matrix_key_state[col] ^ new_state[col]; in pxa27x_keypad_scan_matrix() 467 code = MATRIX_SCAN_CODE(row, col, keypad->row_shift); in pxa27x_keypad_scan_matrix() 471 new_state[col] & (1 << row)); in pxa27x_keypad_scan_matrix()
|
D | lpc32xx-keys.c | 82 static void lpc32xx_mod_states(struct lpc32xx_kscan_drv *kscandat, int col) in lpc32xx_mod_states() argument 88 key = readl(LPC32XX_KS_DATA(kscandat->kscan_base, col)); in lpc32xx_mod_states() 89 changed = key ^ kscandat->lastkeystates[col]; in lpc32xx_mod_states() 90 kscandat->lastkeystates[col] = key; in lpc32xx_mod_states() 95 scancode = MATRIX_SCAN_CODE(row, col, in lpc32xx_mod_states()
|
D | max7359_keypad.c | 92 int val, row, col, release, code; in max7359_interrupt() local 96 col = (val >> 3) & 0x7; in max7359_interrupt() 99 code = MATRIX_SCAN_CODE(row, col, MAX7359_ROW_SHIFT); in max7359_interrupt() 102 "key[%d:%d] %s\n", row, col, release ? "release" : "press"); in max7359_interrupt()
|
D | bcm-keypad.c | 95 static int bcm_kp_get_keycode(struct bcm_kp *kp, int row, int col) in bcm_kp_get_keycode() argument 100 return keymap[MATRIX_SCAN_CODE(row, col, row_shift)]; in bcm_kp_get_keycode() 108 int row, col; in bcm_kp_report_keys() local 123 col = BIT_TO_COL(bit_nr); in bcm_kp_report_keys() 124 keycode = bcm_kp_get_keycode(kp, row, col); in bcm_kp_report_keys()
|
D | w90p910_keypad.c | 62 unsigned int col = KGET_COLUMN(status); in w90p910_keypad_scan_matrix() local 63 unsigned int code = MATRIX_SCAN_CODE(row, col, W90P910_ROW_SHIFT); in w90p910_keypad_scan_matrix()
|
D | tegra-kbc.c | 172 unsigned int col = val & 0x07; in tegra_kbc_report_keys() local 175 MATRIX_SCAN_CODE(row, col, KBC_ROW_SHIFT); in tegra_kbc_report_keys() 206 u8 col = scancodes[j] & 0x07; in tegra_kbc_report_keys() local 209 if (col == curr_col) in tegra_kbc_report_keys()
|
/linux-4.4.14/drivers/tty/vt/ |
D | vc_screen.c | 204 int col, maxcol, viewed; in vcs_read() local 270 col = p % maxcol; in vcs_read() 271 p += maxcol - col; in vcs_read() 274 if (++col == maxcol) { in vcs_read() 276 col = 0; in vcs_read() 320 col = p % maxcol; in vcs_read() 323 p += maxcol - col; in vcs_read() 334 if (++col == maxcol) { in vcs_read() 336 col = 0; in vcs_read() 382 int col, maxcol, viewed; in vcs_write() local [all …]
|
/linux-4.4.14/arch/mips/loongson64/loongson-3/ |
D | numa.c | 72 static int __init compute_node_distance(int row, int col) in compute_node_distance() argument 76 int package_col = col * loongson_sysconf.cores_per_node / in compute_node_distance() 79 if (col == row) in compute_node_distance() 89 int row, col; in init_topology_matrix() local 92 for (col = 0; col < MAX_NUMNODES; col++) in init_topology_matrix() 93 __node_distances[row][col] = -1; in init_topology_matrix() 96 for_each_online_node(col) { in init_topology_matrix() 97 __node_distances[row][col] = in init_topology_matrix() 98 compute_node_distance(row, col); in init_topology_matrix()
|
/linux-4.4.14/sound/pci/cs46xx/ |
D | dsp_spos.c | 558 int i, j, col; in cs46xx_dsp_proc_task_tree_read() local 566 for (col = 0,j = 0;j < ins->tasks[i].size; j++,col++) { in cs46xx_dsp_proc_task_tree_read() 568 if (col == 4) { in cs46xx_dsp_proc_task_tree_read() 570 col = 0; in cs46xx_dsp_proc_task_tree_read() 619 unsigned int i, col = 0; in cs46xx_dsp_proc_parameter_dump_read() local 623 for (i = 0;i < DSP_PARAMETER_BYTE_SIZE; i += sizeof(u32),col ++) { in cs46xx_dsp_proc_parameter_dump_read() 624 if (col == 4) { in cs46xx_dsp_proc_parameter_dump_read() 626 col = 0; in cs46xx_dsp_proc_parameter_dump_read() 630 col = 0; in cs46xx_dsp_proc_parameter_dump_read() 634 if (col == 0) { in cs46xx_dsp_proc_parameter_dump_read() [all …]
|
D | dsp_spos_scb_lib.c | 78 int j,col; in cs46xx_dsp_proc_scb_info_read() local 86 for (col = 0,j = 0;j < 0x10; j++,col++) { in cs46xx_dsp_proc_scb_info_read() 87 if (col == 4) { in cs46xx_dsp_proc_scb_info_read() 89 col = 0; in cs46xx_dsp_proc_scb_info_read()
|
/linux-4.4.14/arch/mips/sgi-ip27/ |
D | ip27-memory.c | 181 cnodeid_t row, col; in init_topology_matrix() local 184 for (col = 0; col < MAX_COMPACT_NODES; col++) in init_topology_matrix() 185 __node_distances[row][col] = -1; in init_topology_matrix() 189 for_each_online_node(col) { in init_topology_matrix() 190 nasid2 = COMPACT_TO_NASID_NODEID(col); in init_topology_matrix() 191 __node_distances[row][col] = in init_topology_matrix() 205 cnodeid_t row, col; in dump_topology() local 210 for_each_online_node(col) in dump_topology() 211 printk("%02d ", col); in dump_topology() 215 for_each_online_node(col) in dump_topology() [all …]
|
/linux-4.4.14/scripts/kconfig/ |
D | gconf.c | 574 GtkTreeViewColumn *col; in on_show_name1_activate() local 577 col = gtk_tree_view_get_column(GTK_TREE_VIEW(tree2_w), COL_NAME); in on_show_name1_activate() 578 if (col) in on_show_name1_activate() 579 gtk_tree_view_column_set_visible(col, show_name); in on_show_name1_activate() 585 GtkTreeViewColumn *col; in on_show_range1_activate() local 588 col = gtk_tree_view_get_column(GTK_TREE_VIEW(tree2_w), COL_NO); in on_show_range1_activate() 589 if (col) in on_show_range1_activate() 590 gtk_tree_view_column_set_visible(col, show_range); in on_show_range1_activate() 591 col = gtk_tree_view_get_column(GTK_TREE_VIEW(tree2_w), COL_MOD); in on_show_range1_activate() 592 if (col) in on_show_range1_activate() [all …]
|
D | qconf.h | 143 void okRename(int col);
|
D | qconf.cc | 97 void ConfigItem::okRename(int col) in okRename() argument
|
/linux-4.4.14/drivers/gpu/drm/mgag200/ |
D | mgag200_cursor.c | 46 unsigned int i, row, col; in mga_crtc_cursor_set() local 194 for (col = 0; col < 64; col++) { in mga_crtc_cursor_set() 195 this_colour = ioread32(bo->kmap.virtual + 4*(col + 64*row)); in mga_crtc_cursor_set() 198 this_row[47 - col/8] |= 0x80>>(col%8); in mga_crtc_cursor_set() 205 if (col % 2) in mga_crtc_cursor_set() 206 this_row[col/2] |= i<<4; in mga_crtc_cursor_set() 208 this_row[col/2] |= i; in mga_crtc_cursor_set()
|
/linux-4.4.14/include/linux/input/ |
D | matrix_keypad.h | 11 #define KEY(row, col, val) ((((row) & (MATRIX_MAX_ROWS - 1)) << 24) |\ argument 12 (((col) & (MATRIX_MAX_COLS - 1)) << 16) |\ 19 #define MATRIX_SCAN_CODE(row, col, row_shift) (((row) << (row_shift)) + (col)) argument
|
/linux-4.4.14/arch/x86/boot/ |
D | video.c | 147 int col; in display_menu() local 157 for (col = 0; col < modes_per_line; col++) in display_menu() 161 col = 0; in display_menu() 181 col++; in display_menu() 182 if (col >= modes_per_line) { in display_menu() 184 col = 0; in display_menu() 195 if (col) in display_menu()
|
/linux-4.4.14/drivers/irqchip/ |
D | irq-gic-v3-its.c | 136 struct its_collection *col; member 148 struct its_collection *col; member 158 struct its_collection *col; member 224 static void its_encode_collection(struct its_cmd_block *cmd, u16 col) in its_encode_collection() argument 227 cmd->raw_cmd[2] |= col; in its_encode_collection() 263 its_encode_collection(cmd, desc->its_mapc_cmd.col->col_id); in its_build_mapc_cmd() 264 its_encode_target(cmd, desc->its_mapc_cmd.col->target_address); in its_build_mapc_cmd() 269 return desc->its_mapc_cmd.col; in its_build_mapc_cmd() 275 struct its_collection *col; in its_build_mapvi_cmd() local 277 col = dev_event_to_col(desc->its_mapvi_cmd.dev, in its_build_mapvi_cmd() [all …]
|
/linux-4.4.14/drivers/media/usb/pwc/ |
D | pwc-uncompress.c | 38 int n, line, col; in pwc_decompress() local 79 for (col = 0; col < pdev->width; col += 4) { in pwc_decompress()
|
/linux-4.4.14/drivers/video/console/ |
D | fbcon.h | 122 int col; in attr_col_ec() local 136 col = mono_col(info); in attr_col_ec() 140 fg = is_mono01 ? col : 0; in attr_col_ec() 141 bg = is_mono01 ? 0 : col; in attr_col_ec() 144 fg = is_mono01 ? 0 : col; in attr_col_ec() 145 bg = is_mono01 ? col : 0; in attr_col_ec()
|
D | sticon.c | 330 int col = 1; /* vga_can_do_color; */ in sticon_invert_region() local 335 if (col) in sticon_invert_region()
|
D | vgacon.c | 641 int col = vga_can_do_color; in vgacon_invert_region() local 645 if (col) in vgacon_invert_region()
|
D | fbcon.c | 305 int col = mono_col(info); in get_color() local 307 int fg = (info->fix.visual != FB_VISUAL_MONO01) ? col : 0; in get_color() 308 int bg = (info->fix.visual != FB_VISUAL_MONO01) ? 0 : col; in get_color()
|
/linux-4.4.14/drivers/gpu/drm/udl/ |
D | udl_fb.c | 44 #define DLO_RGB_GETRED(col) (uint8_t)((col) & 0xFF) argument 47 #define DLO_RGB_GETGRN(col) (uint8_t)(((col) >> 8) & 0xFF) argument 50 #define DLO_RGB_GETBLU(col) (uint8_t)(((col) >> 16) & 0xFF) argument 62 static uint8_t rgb8(uint32_t col) 64 uint8_t red = DLO_RGB_GETRED(col); 65 uint8_t grn = DLO_RGB_GETGRN(col); 66 uint8_t blu = DLO_RGB_GETBLU(col); 71 static uint16_t rgb16(uint32_t col) 73 uint8_t red = DLO_RGB_GETRED(col); 74 uint8_t grn = DLO_RGB_GETGRN(col); [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/input/ |
D | gpio-matrix-keypad.txt | 14 - col-gpios: List of gpios used as column lines. The gpio specifier 25 - col-scan-delay-us: delay, measured in microseconds, that is needed 32 col-scan-delay-us = <2>; 38 col-gpios = <&gpio2 21 0
|
D | nvidia,tegra20-kbc.txt | 12 - nvidia,kbc-col-pins: The KBC pins which are configured as column. This is an 47 nvidia,kbc-col-pins = <11 12 13>; /* pin 11, 12, 13 as columns */
|
D | brcm,bcm-keypad.txt | 29 - col-debounce-filter-period: The debounce period for the Column filter. 103 col-debounce-filter-period = <5>;
|
/linux-4.4.14/arch/arm64/boot/dts/include/dt-bindings/input/ |
D | input.h | 14 #define MATRIX_KEY(row, col, code) \ argument 15 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
|
/linux-4.4.14/arch/mips/boot/dts/include/dt-bindings/input/ |
D | input.h | 14 #define MATRIX_KEY(row, col, code) \ argument 15 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
|
/linux-4.4.14/include/dt-bindings/input/ |
D | input.h | 14 #define MATRIX_KEY(row, col, code) \ argument 15 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
|
/linux-4.4.14/arch/cris/boot/dts/include/dt-bindings/input/ |
D | input.h | 14 #define MATRIX_KEY(row, col, code) \ argument 15 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
|
/linux-4.4.14/arch/arm/boot/dts/include/dt-bindings/input/ |
D | input.h | 14 #define MATRIX_KEY(row, col, code) \ argument 15 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
|
/linux-4.4.14/arch/metag/boot/dts/include/dt-bindings/input/ |
D | input.h | 14 #define MATRIX_KEY(row, col, code) \ argument 15 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
|
/linux-4.4.14/arch/powerpc/boot/dts/include/dt-bindings/input/ |
D | input.h | 14 #define MATRIX_KEY(row, col, code) \ argument 15 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
|
/linux-4.4.14/drivers/input/ |
D | matrix-keymap.c | 36 unsigned int col = KEY_COL(key); in matrix_keypad_map_key() local 39 if (row >= rows || col >= cols) { in matrix_keypad_map_key() 42 __func__, key, row, col, rows, cols); in matrix_keypad_map_key() 46 keymap[MATRIX_SCAN_CODE(row, col, row_shift)] = code; in matrix_keypad_map_key()
|
/linux-4.4.14/arch/blackfin/mach-bf548/include/mach/ |
D | bf54x_keys.h | 21 #define KEYVAL(col, row, val) (((1 << col) << 24) | ((1 << row) << 16) | (val)) argument
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | imx28-tx28.dts | 178 col-gpios = < 192 0x00000074 /* row 0, col 0, KEY_POWER */ 193 0x00010052 /* row 0, col 1, KEY_KP0 */ 194 0x0002004f /* row 0, col 2, KEY_KP1 */ 195 0x00030050 /* row 0, col 3, KEY_KP2 */ 196 0x01000051 /* row 1, col 0, KEY_KP3 */ 197 0x0101004b /* row 1, col 1, KEY_KP4 */ 198 0x0102004c /* row 1, col 2, KEY_KP5 */ 199 0x0103004d /* row 1, col 3, KEY_KP6 */ 200 0x02000047 /* row 2, col 0, KEY_KP7 */ [all …]
|
D | s5pv210-pinctrl.dtsi | 516 keypad_col0: keypad-col-0 { 523 keypad_col1: keypad-col-1 { 530 keypad_col2: keypad-col-2 { 537 keypad_col3: keypad-col-3 { 544 keypad_col4: keypad-col-4 { 551 keypad_col5: keypad-col-5 { 558 keypad_col6: keypad-col-6 { 565 keypad_col7: keypad-col-7 {
|
D | imx53-tx53-x03x.dts | 310 /* row/col 0,1 are mapped to KPP row/col 6,7 */
|
D | stih415-pinctrl.dtsi | 157 col = <&pio0 7 ALT1 IN BYPASS 1000>; 376 col = <&pio15 3 ALT2 IN BYPASS 1000>; 411 col = <&pio15 3 ALT2 IN BYPASS 1000>;
|
D | imx6qdl-tx6.dtsi | 610 /* row/col 0,1 are mapped to KPP row/col 6,7 */
|
D | am437x-sk-evm.dts | 74 col-scan-delay-us = <5>; 79 col-gpios = <&gpio5 13 GPIO_ACTIVE_HIGH /* Bank5, pin13 */
|
D | am335x-evm.dts | 59 col-scan-delay-us = <2>; 65 col-gpios = <&gpio1 21 GPIO_ACTIVE_HIGH /* Bank1, pin21 */
|
D | stih416-pinctrl.dtsi | 178 col = <&pio0 7 ALT1 IN BYPASS 1000>; 477 col = <&pio15 3 ALT2 IN BYPASS 1000>;
|
D | am43x-epos-evm.dts | 73 col-scan-delay-us = <2>; 80 col-gpios = <&gpio3 9 GPIO_ACTIVE_HIGH /* Bank3, pin9 */
|
D | am437x-gp-evm.dts | 64 col-scan-delay-us = <2>; 70 col-gpios = <&gpio3 19 GPIO_ACTIVE_HIGH /* Bank3, pin19 */
|
D | tegra20-whistler.dts | 510 nvidia,kbc-col-pins = <16 17>;
|
D | tegra20-harmony.dts | 443 nvidia,kbc-col-pins = <16 17 18 19 20 21 22 23>;
|
D | tegra20-seaboard.dts | 545 nvidia,kbc-col-pins = <16 17 18 19 20 21 22 23>;
|
D | stih407-pinctrl.dtsi | 242 col = <&pio0 7 ALT1 IN BYPASS 1000>;
|
/linux-4.4.14/drivers/edac/ |
D | octeon_edac-lmc.c | 36 unsigned long col; member 97 fadr.cn61xx.fcol = pvt->col; in octeon_lmc_edac_poll_o2() 164 TEMPLATE_SHOW(col); 165 TEMPLATE_STORE(col); 209 static DEVICE_ATTR(col, S_IRUGO | S_IWUSR,
|
D | synopsys_edac.c | 108 u32 col; member 172 p->ceinfo.col = regval & ADDR_COL_MASK; in synps_edac_geterror_info() 186 p->ueinfo.col = regval & ADDR_COL_MASK; in synps_edac_geterror_info() 215 "CE", pinf->row, pinf->bank, pinf->col); in synps_edac_handle_error() 225 "UE", pinf->row, pinf->bank, pinf->col); in synps_edac_handle_error()
|
D | cpc925_edac.c | 451 u32 bcnt, rank, col, bank, row; in cpc925_mc_get_pfn() local 458 col = (mear & MEAR_COL_MASK) >> MEAR_COL_SHIFT; in cpc925_mc_get_pfn() 476 col += bcnt; in cpc925_mc_get_pfn() 478 c = col & 0x1; in cpc925_mc_get_pfn() 479 col >>= 1; in cpc925_mc_get_pfn()
|
D | i7core_edac.c | 220 int channel, dimm, rank, bank, page, col; member 445 static inline int numcol(u32 col) in numcol() argument 450 return cols[col & 0x3]; in numcol() 869 DECLARE_ADDR_MATCH(col, 0x4000); 876 ATTR_ADDR_MATCH(col); 981 if (pvt->inject.col < 0) in i7core_inject_enable_store() 984 mask |= (pvt->inject.col & 0x3fff); in i7core_inject_enable_store() 2276 pvt->inject.col = -1; in i7core_register_mci()
|
/linux-4.4.14/drivers/video/fbdev/sis/ |
D | sis_accel.c | 321 u32 col = 0; in fbcon_sis_fillrect() local 343 case 8: col = rect->color; in fbcon_sis_fillrect() 346 case 32: col = ((u32 *)(info->pseudo_palette))[rect->color]; in fbcon_sis_fillrect() 353 SiS300SetupForSolidFill(ivideo, col, myrops[rect->rop]); in fbcon_sis_fillrect() 360 SiS310SetupForSolidFill(ivideo, col, myrops[rect->rop]); in fbcon_sis_fillrect()
|
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/ |
D | marvell,kirkwood-pinctrl.txt | 33 mii(col) 41 mpp14 14 gpio, sdio(d0), uart1(rxd), mii(col) 71 mii(col), mii-1(rxerr) 79 mpp14 14 gpio, sdio(d0), uart1(rxd), mii(col) 93 mpp28 28 gpio, ge1(col) 115 mii(col), mii-1(rxerr), sata1(prsnt) 123 mpp14 14 gpio, sdio(d0), uart1(rxd), mii(col), sata1(prsnt) 142 mpp28 28 gpio, ge1(col), ts(mp8), tdm(int), audio(extclk) 164 mii(col), mii-1(rxerr), sata1(prsnt) 172 mpp14 14 gpio, sdio(d0), uart1(rxd), mii(col), sata1(prsnt) [all …]
|
D | marvell,orion-pinctrl.txt | 30 mpp8 8 gpio, ge(col) 55 mpp8 8 gpio, ge(col) 80 mpp8 8 gpio, ge(col)
|
D | marvell,armada-xp-pinctrl.txt | 38 mpp17 17 gpio, ge0(col), ge1(txctl), spi1(miso), lcd(d17)
|
D | marvell,armada-370-pinctrl.txt | 45 mpp24 24 gpio, ge0(col), ge1(txctl), spi1(cs0)
|
D | marvell,armada-38x-pinctrl.txt | 37 mpp19 19 gpio, ge0(col), ptp(evreq), ge0(txerr), sata1(prsnt), ua0(cts)
|
/linux-4.4.14/drivers/power/ |
D | da9052-battery.c | 465 u8 col; in da9052_USB_current_notifier() local 487 for (col = 0; col <= DA9052_CHG_LIM_COLS - 1 ; col++) { in da9052_USB_current_notifier() 488 if (*current_mA <= da9052_chg_current_lim[row][col]) in da9052_USB_current_notifier() 493 DA9052_ISET_USB_MASK, col); in da9052_USB_current_notifier()
|
/linux-4.4.14/drivers/video/fbdev/ |
D | tridentfb.c | 619 int col; in tridentfb_fillrect() local 626 col = fr->color; in tridentfb_fillrect() 627 col |= col << 8; in tridentfb_fillrect() 628 col |= col << 16; in tridentfb_fillrect() 630 col = ((u32 *)(info->pseudo_palette))[fr->color]; in tridentfb_fillrect() 634 fr->height, col, fr->rop); in tridentfb_fillrect() 641 int col, bgcol; in tridentfb_imageblit() local 648 col = img->fg_color; in tridentfb_imageblit() 649 col |= col << 8; in tridentfb_imageblit() 650 col |= col << 16; in tridentfb_imageblit() [all …]
|
D | cyber2000fb.c | 163 unsigned long dst, col; in cyber2000fb_fillrect() local 174 col = rect->color; in cyber2000fb_fillrect() 176 col = ((u32 *)cfb->fb.pseudo_palette)[col]; in cyber2000fb_fillrect() 177 cyber2000fb_writel(col, CO_REG_FGCOLOUR, cfb); in cyber2000fb_fillrect()
|
D | sstfb.c | 670 u32 col; in sstfb_setcolreg() local 682 col = (red << info->var.red.offset) in sstfb_setcolreg() 687 par->palette[regno] = col; in sstfb_setcolreg()
|
/linux-4.4.14/tools/perf/util/ |
D | hist.h | 160 u16 hists__col_len(struct hists *hists, enum hist_column col); 161 void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len); 162 bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len); 253 void perf_hpp__column_enable(unsigned col); 254 void perf_hpp__column_disable(unsigned col);
|
D | hist.c | 21 u16 hists__col_len(struct hists *hists, enum hist_column col) in hists__col_len() argument 23 return hists->col_len[col]; in hists__col_len() 26 void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len) in hists__set_col_len() argument 28 hists->col_len[col] = len; in hists__set_col_len() 31 bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len) in hists__new_col_len() argument 33 if (len > hists__col_len(hists, col)) { in hists__new_col_len() 34 hists__set_col_len(hists, col, len); in hists__new_col_len() 42 enum hist_column col; in hists__reset_col_len() local 44 for (col = 0; col < HISTC_NR_COLS; ++col) in hists__reset_col_len() 45 hists__set_col_len(hists, col, 0); in hists__reset_col_len()
|
D | sort.h | 238 int hpp_dimension__add_output(unsigned col);
|
D | sort.c | 1580 int hpp_dimension__add_output(unsigned col) in hpp_dimension__add_output() argument 1582 BUG_ON(col >= PERF_HPP__MAX_INDEX); in hpp_dimension__add_output() 1583 return __hpp_dimension__add_output(&hpp_sort_dimensions[col]); in hpp_dimension__add_output()
|
/linux-4.4.14/net/9p/ |
D | client.c | 238 int row, col; in p9_tag_alloc() local 259 for (col = 0; col < P9_ROW_MAXTAG; col++) { in p9_tag_alloc() 260 c->reqs[row][col].status = REQ_STATUS_IDLE; in p9_tag_alloc() 261 c->reqs[row][col].tc = NULL; in p9_tag_alloc() 268 col = tag % P9_ROW_MAXTAG; in p9_tag_alloc() 270 req = &c->reqs[row][col]; in p9_tag_alloc() 312 int row, col; in p9_tag_lookup() local 322 col = tag % P9_ROW_MAXTAG; in p9_tag_lookup() 324 return &c->reqs[row][col]; in p9_tag_lookup() 364 int row, col; in p9_tag_cleanup() local [all …]
|
/linux-4.4.14/tools/perf/ui/gtk/ |
D | hists.c | 93 GtkTreeIter *parent, int col, u64 total) in perf_gtk__add_callchain() argument 123 gtk_tree_store_set(store, &iter, col, buf, -1); in perf_gtk__add_callchain() 141 perf_gtk__add_callchain(&node->rb_root, store, &iter, col, in perf_gtk__add_callchain() 147 GtkTreeViewColumn *col __maybe_unused, in on_row_activated()
|
/linux-4.4.14/arch/powerpc/boot/ |
D | 4xx.c | 208 u32 cs, col, row, bank, dpath; in ibm4xx_denali_fixup_memsize() local 245 col = DDR_GET_VAL(val, DDR_COL_SZ, DDR_COL_SZ_SHIFT); in ibm4xx_denali_fixup_memsize() 246 if (col > max_col) in ibm4xx_denali_fixup_memsize() 248 col = max_col - col; in ibm4xx_denali_fixup_memsize() 255 memsize = cs * (1 << (col+row)) * bank * dpath; in ibm4xx_denali_fixup_memsize()
|
/linux-4.4.14/tools/perf/ui/ |
D | hist.c | 515 void perf_hpp__column_enable(unsigned col) in perf_hpp__column_enable() argument 517 BUG_ON(col >= PERF_HPP__MAX_INDEX); in perf_hpp__column_enable() 518 perf_hpp__column_register(&perf_hpp__format[col]); in perf_hpp__column_enable() 521 void perf_hpp__column_disable(unsigned col) in perf_hpp__column_disable() argument 523 BUG_ON(col >= PERF_HPP__MAX_INDEX); in perf_hpp__column_disable() 524 perf_hpp__column_unregister(&perf_hpp__format[col]); in perf_hpp__column_disable()
|
D | browser.c | 299 col = browser->width, in ui_browser__scrollbar_set() local 310 ui_browser__gotorc(browser, row++, col); in ui_browser__scrollbar_set()
|
/linux-4.4.14/net/mac80211/ |
D | rc80211_minstrel.c | 458 unsigned int i, col, new_idx; in init_sample_table() local 465 for (col = 0; col < SAMPLE_COLUMNS; col++) { in init_sample_table() 469 while (SAMPLE_TBL(mi, new_idx, col) != 0xff) in init_sample_table() 472 SAMPLE_TBL(mi, new_idx, col) = i; in init_sample_table()
|
D | rc80211_minstrel_ht.c | 1363 int col, i, new_idx; in init_sample_table() local 1367 for (col = 0; col < SAMPLE_COLUMNS; col++) { in init_sample_table() 1371 while (sample_table[col][new_idx] != 0xff) in init_sample_table() 1374 sample_table[col][new_idx] = i; in init_sample_table()
|
/linux-4.4.14/include/linux/mfd/ |
D | adp5520.h | 166 #define ADP5520_KEY(row, col) (col + row * 4) argument
|
D | cros_ec_commands.h | 1654 uint8_t col; member
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | ac14xx.dts | 360 col-scan-delay-us = <1>; 362 col-gpios-binary; 363 col-switch-delay-ms = <200>; 365 col-gpios = <&gpio_pic 1 0>; /* pin1 */
|
/linux-4.4.14/drivers/media/platform/vivid/ |
D | vivid-tpg.c | 702 int col = k; in precalculate_color() local 703 int r = tpg_colors[col].r; in precalculate_color() 704 int g = tpg_colors[col].g; in precalculate_color() 705 int b = tpg_colors[col].b; in precalculate_color() 708 col = tpg_get_textbg_color(tpg); in precalculate_color() 710 r = tpg_colors[col].r; in precalculate_color() 711 g = tpg_colors[col].g; in precalculate_color() 712 b = tpg_colors[col].b; in precalculate_color() 714 col = tpg_get_textfg_color(tpg); in precalculate_color() 716 r = tpg_colors[col].r; in precalculate_color() [all …]
|
/linux-4.4.14/drivers/staging/mt29f_spinand/ |
D | mt29f_spinand.h | 87 u32 col; member
|
D | mt29f_spinand.c | 784 state->col = column; in spinand_cmdfunc() 790 spinand_program_page(info->spi, state->row, state->col, in spinand_cmdfunc()
|
/linux-4.4.14/drivers/video/fbdev/matrox/ |
D | matroxfb_crtc2.c | 32 u_int32_t col; in matroxfb_dh_setcolreg() local 46 col = (red << m2info->fbcon.var.red.offset) | in matroxfb_dh_setcolreg() 53 m2info->cmap[regno] = col | (col << 16); in matroxfb_dh_setcolreg() 56 m2info->cmap[regno] = col; in matroxfb_dh_setcolreg()
|
D | matroxfb_base.c | 682 u_int16_t col = in matroxfb_setcolreg() local 687 minfo->cmap[regno] = col | (col << 16); in matroxfb_setcolreg()
|
/linux-4.4.14/fs/ubifs/ |
D | lpt.c | 532 static int calc_nnode_num(int row, int col) in calc_nnode_num() argument 538 bits = (col & (UBIFS_LPT_FANOUT - 1)); in calc_nnode_num() 539 col >>= UBIFS_LPT_FANOUT_SHIFT; in calc_nnode_num() 2092 int col) in dbg_chk_pnode() argument 2096 if (pnode->num != col) { in dbg_chk_pnode() 2098 pnode->num, col, pnode->parent->num, pnode->iip); in dbg_chk_pnode() 2222 int row, int col) in dbg_check_lpt_nodes() argument 2236 num = calc_nnode_num(row, col); in dbg_check_lpt_nodes() 2249 col <<= UBIFS_LPT_FANOUT_SHIFT; in dbg_check_lpt_nodes() 2250 col += iip; in dbg_check_lpt_nodes() [all …]
|
D | debug.h | 297 int row, int col);
|
/linux-4.4.14/drivers/xen/events/ |
D | events_base.c | 102 unsigned col; in clear_evtchn_to_irq_row() local 104 for (col = 0; col < EVTCHN_PER_ROW; col++) in clear_evtchn_to_irq_row() 105 evtchn_to_irq[row][col] = -1; in clear_evtchn_to_irq_row() 122 unsigned col; in set_evtchn_to_irq() local 128 col = EVTCHN_COL(evtchn); in set_evtchn_to_irq()
|
/linux-4.4.14/tools/perf/ |
D | builtin-diff.c | 734 int col; in data__free() local 736 for (col = 0; col < PERF_HPP_DIFF__MAX_INDEX; col++) { in data__free() 737 struct diff_hpp_fmt *fmt = &d->fmt[col]; in data__free()
|
/linux-4.4.14/drivers/atm/ |
D | iphase.c | 980 int col, count; local 986 for(col = 0;count + col < length && col < 16; col++){ 987 if (col != 0 && (col % 4) == 0) 989 pBuf += sprintf( pBuf, "%02X ", cp[count + col] ); 991 while(col++ < 16){ /* pad end of buffer with blanks */ 992 if ((col % 4) == 0) 997 for(col = 0;count + col < length && col < 16; col++){ 998 if (isprint((int)cp[count + col])) 999 pBuf += sprintf( pBuf, "%c", cp[count + col] ); 1004 count += col;
|
/linux-4.4.14/drivers/mtd/nand/ |
D | mxc_nand.c | 767 u16 col = host->buf_start; in mxc_nand_write_buf() local 768 int n = mtd->oobsize + mtd->writesize - col; in mxc_nand_write_buf() 772 memcpy(host->data_buf + col, buf, n); in mxc_nand_write_buf() 785 u16 col = host->buf_start; in mxc_nand_read_buf() local 786 int n = mtd->oobsize + mtd->writesize - col; in mxc_nand_read_buf() 790 memcpy(buf, host->data_buf + col, n); in mxc_nand_read_buf()
|
D | vf610_nfc.c | 274 static u8 vf610_nfc_get_id(struct vf610_nfc *nfc, int col) in vf610_nfc_get_id() argument 278 if (col < 4) { in vf610_nfc_get_id() 280 flash_id >>= (3 - col) * 8; in vf610_nfc_get_id()
|
D | nand_base.c | 1682 int chipnr, page, realpage, col, bytes, aligned, oob_required; in nand_do_read_ops() local 1702 col = (int)(from & (mtd->writesize - 1)); in nand_do_read_ops() 1711 bytes = min(mtd->writesize - col, readlen); in nand_do_read_ops() 1743 col, bytes, bufpoi, in nand_do_read_ops() 1768 memcpy(buf, chip->buffers->databuf + col, bytes); in nand_do_read_ops() 1808 memcpy(buf, chip->buffers->databuf + col, bytes); in nand_do_read_ops() 1828 col = 0; in nand_do_read_ops()
|
D | denali.c | 1294 static void denali_cmdfunc(struct mtd_info *mtd, unsigned int cmd, int col, in denali_cmdfunc() argument 1317 index_addr(denali, addr | 1, col); in denali_cmdfunc()
|
/linux-4.4.14/net/ipv4/ |
D | tcp_metrics.c | 909 int s_col = cb->args[1], col = s_col; in tcp_metrics_nl_dump() local 916 for (col = 0, tm = rcu_dereference(hb->chain); tm; in tcp_metrics_nl_dump() 917 tm = rcu_dereference(tm->tcpm_next), col++) { in tcp_metrics_nl_dump() 920 if (col < s_col) in tcp_metrics_nl_dump() 932 cb->args[1] = col; in tcp_metrics_nl_dump()
|
/linux-4.4.14/drivers/media/pci/saa7134/ |
D | saa7134-video.c | 655 struct cliplist col[16], row[16]; in setup_clipping() local 659 memset(col, 0, sizeof(col)); in setup_clipping() 662 col[cols].position = clip_range(clips[i].c.left); in setup_clipping() 663 col[cols].enable = (1 << i); in setup_clipping() 665 col[cols].position = clip_range(clips[i].c.left+clips[i].c.width); in setup_clipping() 666 col[cols].disable = (1 << i); in setup_clipping() 676 sort(col, cols, sizeof col[0], cliplist_cmp, NULL); in setup_clipping() 678 set_cliplist(dev,0x380,col,cols,"cols"); in setup_clipping()
|
/linux-4.4.14/drivers/pinctrl/sh-pfc/ |
D | sh_pfc.h | 305 #define SH_PFC_PIN_NAMED(row, col, _name) \ argument 307 .pin = PIN_NUMBER(row, col), \
|
D | pfc-emev2.c | 227 #define PIN_NUMBER(row, col) (1000+((row)-1)*23+(col)-1) argument
|
D | pfc-sh73a0.c | 1178 #define PIN_NUMBER(row, col) (1000+((row)-1)*34+(col)-1) argument
|
D | pfc-r8a7778.c | 1267 #define PIN_NUMBER(row, col) (1000+((row)-1)*25+(col)-1) argument
|
/linux-4.4.14/drivers/net/wireless/ath/ath5k/ |
D | rfbuffer.h | 77 u8 col; member
|
D | phy.c | 197 u8 offset, bank, num_bits, col, position; in ath5k_hw_rfb_op() local 223 col = rfreg->field.col; in ath5k_hw_rfb_op() 232 if (!(col <= 3 && num_bits <= 32 && first_bit + num_bits <= 319)) { in ath5k_hw_rfb_op() 250 (col * 8); in ath5k_hw_rfb_op() 254 rfb[entry] |= ((data << position) << (col * 8)) & mask; in ath5k_hw_rfb_op() 257 data |= (((rfb[entry] & mask) >> (col * 8)) >> position) in ath5k_hw_rfb_op()
|
/linux-4.4.14/drivers/hid/ |
D | hid-input.c | 1468 struct hid_collection *col = &hid->collection[i]; in hidinput_connect() local 1469 if (col->type == HID_COLLECTION_APPLICATION || in hidinput_connect() 1470 col->type == HID_COLLECTION_PHYSICAL) in hidinput_connect() 1471 if (IS_INPUT_APPLICATION(col->usage)) in hidinput_connect()
|
D | hid-core.c | 1666 struct hid_collection *col = &hdev->collection[i]; in hid_connect() local 1667 if (col->type == HID_COLLECTION_APPLICATION && in hid_connect() 1668 (col->usage & HID_USAGE_PAGE) == HID_UP_GENDESK && in hid_connect() 1669 (col->usage & 0xffff) < ARRAY_SIZE(types)) { in hid_connect() 1670 type = types[col->usage & 0xffff]; in hid_connect()
|
/linux-4.4.14/drivers/video/fbdev/riva/ |
D | fbdev.c | 1466 static inline void convert_bgcolor_16(u32 *col) in convert_bgcolor_16() argument 1468 *col = ((*col & 0x0000F800) << 8) in convert_bgcolor_16() 1469 | ((*col & 0x00007E0) << 5) in convert_bgcolor_16() 1470 | ((*col & 0x0000001F) << 3) in convert_bgcolor_16()
|
/linux-4.4.14/drivers/mtd/nand/gpmi-nand/ |
D | gpmi-nand.c | 1087 int col = 0; in gpmi_ecc_read_subpage() local 1116 col = meta + (size + ecc_parity_size) * first; in gpmi_ecc_read_subpage() 1117 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, col, -1); in gpmi_ecc_read_subpage() 1147 page, offs, len, col, first, n, page_size); in gpmi_ecc_read_subpage()
|
/linux-4.4.14/Documentation/ |
D | edac.txt | 620 dimm 0 1024 Mb offset: 0, bank: 8, rank: 1, row: 0x4000, col: 0x400 621 dimm 1 1024 Mb offset: 4, bank: 8, rank: 1, row: 0x4000, col: 0x400 623 dimm 0 1024 Mb offset: 0, bank: 8, rank: 1, row: 0x4000, col: 0x400 625 dimm 0 1024 Mb offset: 0, bank: 8, rank: 1, row: 0x4000, col: 0x400 651 column (or col) = the address column.
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/ |
D | rs.c | 3771 int col, rate; in rs_sta_dbgfs_drv_tx_stats_read() local 3789 for (col = 0; col < RS_COLUMN_COUNT; col++) { in rs_sta_dbgfs_drv_tx_stats_read() 3791 "%s,", column_name[col]); in rs_sta_dbgfs_drv_tx_stats_read() 3794 stats = &(lq_sta->pers.tx_stats[col][rate]); in rs_sta_dbgfs_drv_tx_stats_read()
|
/linux-4.4.14/Documentation/networking/ |
D | dl2k.txt | 265 cat dl2k.c | col -b > dl2k.tmp
|
/linux-4.4.14/drivers/scsi/ |
D | hpsa.c | 2991 int map, row, col; in hpsa_debug_map_buff() local 3040 for (col = 0; col < disks_per_row; col++, dd++) in hpsa_debug_map_buff() 3043 col, dd->ioaccel_handle, in hpsa_debug_map_buff() 3047 for (col = 0; col < disks_per_row; col++, dd++) in hpsa_debug_map_buff() 3050 col, dd->ioaccel_handle, in hpsa_debug_map_buff()
|
/linux-4.4.14/arch/mips/include/asm/octeon/ |
D | cvmx-lmcx-defs.h | 2605 uint64_t col:12; member 2611 uint64_t col:12;
|