Searched refs:slotnum (Results 1 – 3 of 3) sorted by relevance
/drivers/input/touchscreen/ |
D | penmount.c | 135 int slotnum = pm->data[0] & 0x0f; in pm_parse_3000() local 136 pm->slots[slotnum].active = pm->data[0] & 0x30; in pm_parse_3000() 137 pm->slots[slotnum].x = pm->data[2] * 256 + pm->data[1]; in pm_parse_3000() 138 pm->slots[slotnum].y = pm->data[4] * 256 + pm->data[3]; in pm_parse_3000() 151 int slotnum = pm->data[0] & 0x0f; in pm_parse_6250() local 152 pm->slots[slotnum].active = pm->data[0] & 0x40; in pm_parse_6250() 153 pm->slots[slotnum].x = pm->data[2] * 256 + pm->data[1]; in pm_parse_6250() 154 pm->slots[slotnum].y = pm->data[4] * 256 + pm->data[3]; in pm_parse_6250()
|
D | sur40.c | 415 int bb_size_x, bb_size_y, pos_x, pos_y, ctr_x, ctr_y, slotnum; in sur40_report_blob() local 420 slotnum = input_mt_get_slot_by_key(input, blob->blob_id); in sur40_report_blob() 421 if (slotnum < 0 || slotnum >= MAX_CONTACTS) in sur40_report_blob() 433 input_mt_slot(input, slotnum); in sur40_report_blob()
|
/drivers/hid/ |
D | hid-multitouch.c | 892 int slotnum; in mt_release_pending_palms() local 895 for_each_set_bit(slotnum, app->pending_palm_slots, td->maxcontacts) { in mt_release_pending_palms() 896 clear_bit(slotnum, app->pending_palm_slots); in mt_release_pending_palms() 898 input_mt_slot(input, slotnum); in mt_release_pending_palms() 976 int slotnum; in mt_process_slot() local 998 slotnum = mt_compute_slot(td, app, slot, input); in mt_process_slot() 999 if (slotnum < 0 || slotnum >= td->maxcontacts) in mt_process_slot() 1003 struct input_mt_slot *i_slot = &mt->slots[slotnum]; in mt_process_slot() 1023 input_mt_is_active(&mt->slots[slotnum])) { in mt_process_slot() 1034 set_bit(slotnum, app->pending_palm_slots); in mt_process_slot() [all …]
|