Home
last modified time | relevance | path

Searched refs:abs_y (Results 1 – 8 of 8) sorted by relevance

/linux-4.1.27/drivers/input/mouse/
Dsentelic.c653 unsigned short abs_x = 0, abs_y = 0; in fsp_packet_debug() local
660 abs_y = GET_ABS_Y(packet); in fsp_packet_debug()
679 packet[0], packet[1], packet[2], packet[3], abs_x, abs_y); in fsp_packet_debug()
710 unsigned short abs_x, abs_y, fgrs = 0; in fsp_process_byte() local
736 abs_y = GET_ABS_Y(packet); in fsp_process_byte()
759 fsp_set_slot(dev, 1, fgrs == 2, abs_x, abs_y); in fsp_process_byte()
772 fsp_set_slot(dev, 0, fgrs != 0, abs_x, abs_y); in fsp_process_byte()
788 if (abs_x != 0 && abs_y != 0) in fsp_process_byte()
791 fsp_set_slot(dev, 0, fgrs > 0, abs_x, abs_y); in fsp_process_byte()
796 input_report_abs(dev, ABS_Y, abs_y); in fsp_process_byte()
[all …]
Dhgpk.h43 int abs_x, abs_y; member
Dhgpk.c192 priv->abs_x = priv->abs_y = -1; in hgpk_reset_hack_state()
393 if (x == priv->abs_x && y == priv->abs_y) { in hgpk_process_advanced_packet()
410 int y_diff = priv->abs_y - y; in hgpk_process_advanced_packet()
422 priv->abs_y = y; in hgpk_process_advanced_packet()
Dbcm5974.c202 __le16 abs_y; /* absolute y coodinate */ member
563 dev->pos[n].y = c->y.min + c->y.max - raw2int(f[i].abs_y); in report_tp_state()
/linux-4.1.27/drivers/input/joystick/
Dtwidjoy.c107 int button_bits, abs_x, abs_y; in twidjoy_process_packet() local
122 abs_y = ((data[3] & 0x01) << 7) | ((data[2] & 0x7F) >> 0); in twidjoy_process_packet()
123 if (data[3] & 0x02) abs_y -= 256; in twidjoy_process_packet()
126 input_report_abs(dev, ABS_Y, +abs_y); in twidjoy_process_packet()
/linux-4.1.27/drivers/input/touchscreen/
Dwm97xx-core.c77 static int abs_y[3] = {200, 4000, 40}; variable
78 module_param_array(abs_y, int, NULL, 0);
79 MODULE_PARM_DESC(abs_y, "Touchscreen absolute Y min, max, fuzz");
448 abs_y[0] > (data.y & 0xfff) || in wm97xx_read_samples()
449 abs_y[1] < (data.y & 0xfff)) { in wm97xx_read_samples()
665 input_set_abs_params(wm->input_dev, ABS_Y, abs_y[0], abs_y[1], in wm97xx_probe()
666 abs_y[2], 0); in wm97xx_probe()
/linux-4.1.27/include/xen/interface/io/
Dkbdif.h64 int32_t abs_y; /* absolute Y position (in FB pixels) */ member
/linux-4.1.27/drivers/input/misc/
Dxen-kbdfront.c92 input_report_abs(dev, ABS_Y, event->pos.abs_y); in input_handler()