Lines Matching defs:code
53 * - When it stops blinking, input the channel code as two digits, from 01
275 unsigned char data; /* Raw key code from remote */
276 unsigned short code; /* Input layer translation */
290 /* "Mouse button" buttons. The code below uses the fact that the
291 * lsbit of the raw code is a down/up indicator. */
493 * data[2] = the key code (with toggle bit in MSB with some models)
522 * MSB is a toggle code, though only used by some devices
544 /* Look up event code index in the mouse translation
558 * The lsbit of the raw key code is a down/up flag.
561 input_event(dev, EV_KEY, ati_remote_tbl[index].code,
592 input_event(dev, EV_KEY, ati_remote_tbl[index].code, 1);
593 input_event(dev, EV_KEY, ati_remote_tbl[index].code, 0);
624 signed char dx = ati_remote_tbl[index].code >> 8;
625 signed char dy = ati_remote_tbl[index].code & 255;
735 __set_bit(ati_remote_tbl[i].code, idev->keybit);