Searched refs:coord (Results 1 – 8 of 8) sorted by relevance
/linux/drivers/input/touchscreen/ |
A D | wacom_w8001.c | 109 memset(coord, 0, sizeof(*coord)); in parse_pen_data() 111 coord->rdy = data[0] & 0x20; in parse_pen_data() 113 coord->f1 = data[0] & 0x02; in parse_pen_data() 114 coord->f2 = data[0] & 0x04; in parse_pen_data() 230 if (!coord->f2) { in report_pen_events() 259 if (!coord->rdy) in report_pen_events() 266 unsigned int x = coord->x; in report_single_touch() 267 unsigned int y = coord->y; in report_single_touch() 285 struct w8001_coord coord; in w8001_interrupt() local 426 struct w8001_coord coord; in w8001_setup_pen() local [all …]
|
A D | jornada720_ts.c | 55 int coord, high_bits = coords[3]; in jornada720_ts_average() local 57 coord = coords[0] | ((high_bits & 0x03) << 8); in jornada720_ts_average() 58 coord += coords[1] | ((high_bits & 0x0c) << 6); in jornada720_ts_average() 59 coord += coords[2] | ((high_bits & 0x30) << 4); in jornada720_ts_average() 61 return coord / 3; in jornada720_ts_average()
|
A D | wm9712.c | 112 static int coord; variable 113 module_param(coord, int, 0); 114 MODULE_PARM_DESC(coord, "Polling coordinate mode"); 209 if (coord) in wm9712_phy_init() 383 if (coord) { in wm9712_poll_touch()
|
A D | wm9713.c | 112 static int coord; variable 113 module_param(coord, int, 0); 114 MODULE_PARM_DESC(coord, "Polling coordinate mode"); 203 if (coord) in wm9713_phy_init() 394 if (coord) { in wm9713_poll_touch()
|
/linux/lib/math/ |
A D | cordic.c | 48 struct cordic_iq coord; in cordic_calc_iq() local 54 coord.i = CORDIC_ANGLE_GEN; in cordic_calc_iq() 55 coord.q = 0; in cordic_calc_iq() 73 valtmp = coord.i - (coord.q >> iter); in cordic_calc_iq() 74 coord.q += (coord.i >> iter); in cordic_calc_iq() 77 valtmp = coord.i + (coord.q >> iter); in cordic_calc_iq() 78 coord.q -= (coord.i >> iter); in cordic_calc_iq() 81 coord.i = valtmp; in cordic_calc_iq() 84 coord.i *= signx; in cordic_calc_iq() 85 coord.q *= signx; in cordic_calc_iq() [all …]
|
/linux/sound/pci/au88x0/ |
A D | au88x0_a3d.c | 693 static void vortex_a3d_coord2hrtf(a3d_Hrtf_t hrtf, int *coord) in vortex_a3d_coord2hrtf() argument 698 static void vortex_a3d_coord2itd(a3d_Itd_t itd, int *coord) in vortex_a3d_coord2itd() argument 769 int coord[6]; in snd_vortex_a3d_hrtf_put() local 771 coord[i] = ucontrol->value.integer.value[i]; in snd_vortex_a3d_hrtf_put() 773 vortex_a3d_coord2hrtf(a->hrtf[0], coord); in snd_vortex_a3d_hrtf_put() 774 vortex_a3d_coord2hrtf(a->hrtf[1], coord); in snd_vortex_a3d_hrtf_put() 785 int coord[6]; in snd_vortex_a3d_itd_put() local 788 coord[i] = ucontrol->value.integer.value[i]; in snd_vortex_a3d_itd_put() 790 vortex_a3d_coord2itd(a->hrtf[0], coord); in snd_vortex_a3d_itd_put() 791 vortex_a3d_coord2itd(a->hrtf[1], coord); in snd_vortex_a3d_itd_put()
|
/linux/drivers/staging/media/atomisp/pci/ |
A D | sh_css.c | 1427 const struct ia_css_coordinate *coord = NULL; in start_pipe() local 1437 coord = &me->config.internal_frame_origin_bqs_on_sctbl; in start_pipe() 1456 coord, in start_pipe() 3840 const struct ia_css_coordinate *coord = NULL; in preview_start() local 3879 coord = &pipe->config.internal_frame_origin_bqs_on_sctbl; in preview_start() 3896 coord, in preview_start() 3919 coord, in preview_start() 3937 coord, in preview_start() 5578 const struct ia_css_coordinate *coord = NULL; in video_start() local 5632 coord, in video_start() [all …]
|
/linux/Documentation/driver-api/media/drivers/ |
A D | cx2341x-devel.rst | 3463 osd x coord for left edge 3466 osd y coord for top edge 3470 osd x coord for right edge 3473 osd y coord for bottom edge
|
Completed in 730 milliseconds