Lines Matching refs:buttons
221 u_int buttons;
222 buttons = ~buf[0] & 0x7;
224 u_int b1 = (buttons & 0x1) << 2;
225 u_int b3 = (buttons & 0x4) >> 2;
226 buttons = (buttons & 0x2) | b1 | b3;
231 mouse_debug_print(buttons, x, y);
234 buttons,
493 mouse_debug_print(u_int buttons, int x, int y)
511 fb_drawchar(480 + i * 12, k, buttons & j ? '|' : '.');