Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/media/rc/
Dimon.c1329 signed char rel_x = 0x00, rel_y = 0x00; in imon_mouse_event() local
1340 rel_y = buf[3]; in imon_mouse_event()
1350 rel_y = (buf[2] & 0x08) | (buf[2] & 0x10) >> 2 | in imon_mouse_event()
1353 rel_y |= ~0x0f; in imon_mouse_event()
1354 rel_y = rel_y + rel_y / 2; in imon_mouse_event()
1374 } else if (rel_x || rel_y) { in imon_mouse_event()
1376 input_report_rel(ictx->idev, REL_Y, rel_y); in imon_mouse_event()
1405 signed char rel_x = 0x00, rel_y = 0x00; in imon_pad_to_keys() local
1425 rel_y = buf[3]; in imon_pad_to_keys()
1428 if ((buf[1] == 0) && ((rel_x != 0) || (rel_y != 0))) { in imon_pad_to_keys()
[all …]
/linux-4.4.14/include/xen/interface/io/
Dkbdif.h51 int32_t rel_y; /* relative Y motion */ member
/linux-4.4.14/drivers/input/mouse/
Dsentelic.c713 int rel_x, rel_y; in fsp_process_byte() local
848 rel_y = packet[2] ? (int)((packet[0] << 3) & 0x100) - (int)packet[2] : 0; in fsp_process_byte()
851 input_report_rel(dev, REL_Y, rel_y); in fsp_process_byte()
Dbcm5974.c185 u8 rel_y; /* relative y coordinate */ member
239 __le16 rel_y; /* relative y coodinate */ member
570 dev->bt_data->rel_x, dev->bt_data->rel_y); in report_bt_state()
/linux-4.4.14/drivers/input/misc/
Dxen-kbdfront.c72 input_report_rel(dev, REL_Y, event->motion.rel_y); in input_handler()