Lines Matching defs:b_rsp3
211 u8 b_rsp3, b_rsp4;
229 b_rsp3 = ~pad->response[3];
236 input_report_key(input, BTN_DPAD_UP, b_rsp3 & BIT(3));
237 input_report_key(input, BTN_DPAD_DOWN, b_rsp3 & BIT(1));
238 input_report_key(input, BTN_DPAD_LEFT, b_rsp3 & BIT(0));
239 input_report_key(input, BTN_DPAD_RIGHT, b_rsp3 & BIT(2));
248 input_report_key(input, BTN_THUMBL, b_rsp3 & BIT(6));
249 input_report_key(input, BTN_THUMBR, b_rsp3 & BIT(5));
250 input_report_key(input, BTN_SELECT, b_rsp3 & BIT(7));
251 input_report_key(input, BTN_START, b_rsp3 & BIT(4));
256 b_rsp3 = ~pad->response[3];
263 input_report_key(input, BTN_DPAD_UP, b_rsp3 & BIT(3));
264 input_report_key(input, BTN_DPAD_DOWN, b_rsp3 & BIT(1));
265 input_report_key(input, BTN_DPAD_LEFT, b_rsp3 & BIT(0));
266 input_report_key(input, BTN_DPAD_RIGHT, b_rsp3 & BIT(2));
277 input_report_key(input, BTN_SELECT, b_rsp3 & BIT(7));
278 input_report_key(input, BTN_START, b_rsp3 & BIT(4));