Searched refs:rel_y (Results 1 – 5 of 5) sorted by relevance
/Linux-v4.19/drivers/media/rc/ |
D | ir-imon-decoder.c | 47 int rel_x, rel_y; in ir_imon_decode_scancode() local 56 rel_y = (buf & 0x08) | (buf & 0x10) >> 2 | in ir_imon_decode_scancode() 59 rel_y |= ~0x0f; in ir_imon_decode_scancode() 61 if (rel_x && rel_y && imon->stick_keyboard) { in ir_imon_decode_scancode() 62 if (abs(rel_y) > abs(rel_x)) in ir_imon_decode_scancode() 63 imon->bits = rel_y > 0 ? in ir_imon_decode_scancode() 83 input_report_rel(imon->idev, REL_Y, rel_y); in ir_imon_decode_scancode()
|
D | imon.c | 1293 signed char rel_x = 0x00, rel_y = 0x00; in imon_mouse_event() local 1304 rel_y = buf[3]; in imon_mouse_event() 1314 rel_y = (buf[2] & 0x08) | (buf[2] & 0x10) >> 2 | in imon_mouse_event() 1317 rel_y |= ~0x0f; in imon_mouse_event() 1318 rel_y = rel_y + rel_y / 2; in imon_mouse_event() 1338 } else if (rel_x || rel_y) { in imon_mouse_event() 1340 input_report_rel(ictx->idev, REL_Y, rel_y); in imon_mouse_event() 1369 signed char rel_x = 0x00, rel_y = 0x00; in imon_pad_to_keys() local 1389 rel_y = buf[3]; in imon_pad_to_keys() 1392 if ((buf[1] == 0) && ((rel_x != 0) || (rel_y != 0))) { in imon_pad_to_keys() [all …]
|
/Linux-v4.19/include/xen/interface/io/ |
D | kbdif.h | 273 int32_t rel_y; member
|
/Linux-v4.19/drivers/input/mouse/ |
D | bcm5974.c | 185 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-v4.19/drivers/input/misc/ |
D | xen-kbdfront.c | 70 input_report_rel(info->ptr, REL_Y, motion->rel_y); in xenkbd_handle_motion_event()
|