Home
last modified time | relevance | path

Searched refs:PACKET_BIT (Results 1 – 2 of 2) sorted by relevance

/titanic_44/usr/src/uts/common/io/usb/clients/usbinput/usbwcm/
H A Dusbwcm.c225 if (PACKET_BIT(1, 7)) { in usbwcm_input_graphire()
230 if (!PACKET_BIT(1, 6)) { in usbwcm_input_graphire()
231 if (!PACKET_BIT(1, 5)) { in usbwcm_input_graphire()
240 (PACKET_BIT(7, 0) << 8) | PACKET_BITS(6, 0, 8), in usbwcm_input_graphire()
241 PACKET_BIT(1, 1), PACKET_BIT(1, 2)); in usbwcm_input_graphire()
246 wheel = (PACKET_BIT(1, 5) ? in usbwcm_input_graphire()
250 wheel = (PACKET_BIT(7, 2) << 2) - in usbwcm_input_graphire()
258 uwacom_mouse_events_graphire(usbwcmp, PACKET_BIT(1, 0), in usbwcm_input_graphire()
259 PACKET_BIT(1, 2), PACKET_BIT(1, 1), wheel, in usbwcm_input_graphire()
281 uwacom_pad_events_graphire4(usbwcmp, PACKET_BIT(7, 6), 0, in usbwcm_input_graphire()
[all …]
/titanic_44/usr/src/uts/common/sys/usb/clients/usbinput/usbwcm/
H A Dusbwcm.h435 #define PACKET_BIT(b, s) ((packet[b] >> (s)) & 1) macro