Lines Matching refs:uint8_t
29 uint8_t recipient : 5;
30 uint8_t type : 2;
31 uint8_t direction : 1;
33 uint8_t direction : 1;
34 uint8_t type : 2;
35 uint8_t recipient : 5;
42 uint8_t bmRequestType;
45 uint8_t bRequest;
145 uint8_t bLength;
146 uint8_t bDescriptorType;
151 uint8_t bLength;
152 uint8_t bDescriptorType;
154 uint8_t bDeviceClass;
155 uint8_t bDeviceSubClass;
156 uint8_t bDeviceProtocol;
157 uint8_t bMaxPacketSize0;
161 uint8_t iManufacturer;
162 uint8_t iProduct;
163 uint8_t iSerialNumber;
164 uint8_t bNumConfigurations;
169 uint8_t bLength;
170 uint8_t bDescriptorType;
172 uint8_t bDeviceClass;
173 uint8_t bDeviceSubClass;
174 uint8_t bDeviceProtocol;
175 uint8_t bMaxPacketSize0;
176 uint8_t bNumConfigurations;
177 uint8_t bReserved;
182 uint8_t bLength;
183 uint8_t bDescriptorType;
185 uint8_t bNumInterfaces;
186 uint8_t bConfigurationValue;
187 uint8_t iConfiguration;
188 uint8_t bmAttributes;
189 uint8_t bMaxPower;
194 uint8_t bLength;
195 uint8_t bDescriptorType;
196 uint8_t bInterfaceNumber;
197 uint8_t bAlternateSetting;
198 uint8_t bNumEndpoints;
199 uint8_t bInterfaceClass;
200 uint8_t bInterfaceSubClass;
201 uint8_t bInterfaceProtocol;
202 uint8_t iInterface;
207 uint8_t transfer : 2;
208 uint8_t synch: 2;
209 uint8_t usage: 2;
210 uint8_t reserved: 2;
212 uint8_t reserved: 2;
213 uint8_t usage : 2;
214 uint8_t synch : 2;
215 uint8_t transfer : 2;
221 uint8_t bLength;
222 uint8_t bDescriptorType;
223 uint8_t bEndpointAddress;
225 uint8_t bmAttributes;
229 uint8_t bInterval;
234 uint8_t bLength;
235 uint8_t bDescriptorType;
241 uint8_t bLength;
242 uint8_t bDescriptorType;
243 uint8_t bFirstInterface;
244 uint8_t bInterfaceCount;
245 uint8_t bFunctionClass;
246 uint8_t bFunctionSubClass;
247 uint8_t bFunctionProtocol;
248 uint8_t iFunction;
281 #define USB_GET_DESCRIPTOR_TYPE(wValue) ((uint8_t)((wValue) >> 8))
284 #define USB_GET_DESCRIPTOR_INDEX(wValue) ((uint8_t)(wValue))
295 #define USB_EP_DIR_MASK (uint8_t)BIT(7)
298 #define USB_EP_DIR_IN (uint8_t)BIT(7)