Lines Matching defs:code
53 * - When it stops blinking, input the channel code as two digits, from 01
273 unsigned char data; /* Raw key code from remote */
274 unsigned short code; /* Input layer translation */
288 /* "Mouse button" buttons. The code below uses the fact that the
289 * lsbit of the raw code is a down/up indicator. */
491 * data[2] = the key code (with toggle bit in MSB with some models)
520 * MSB is a toggle code, though only used by some devices
542 /* Look up event code index in the mouse translation
556 * The lsbit of the raw key code is a down/up flag.
559 input_event(dev, EV_KEY, ati_remote_tbl[index].code,
590 input_event(dev, EV_KEY, ati_remote_tbl[index].code, 1);
591 input_event(dev, EV_KEY, ati_remote_tbl[index].code, 0);
622 signed char dx = ati_remote_tbl[index].code >> 8;
623 signed char dy = ati_remote_tbl[index].code & 255;
733 __set_bit(ati_remote_tbl[i].code, idev->keybit);