| /openbsd-src/sys/dev/usb/ |
| H A D | uvideo.h | 158 uByte bLength; 159 uByte bDescriptorType; 160 uByte bDescriptorSubtype; 164 uByte bInCollection; 169 uByte *baInterfaceNr; 174 uByte bLength; 175 uByte bDescriptorType; 176 uByte bDescriptorSubtype; 177 uByte bTerminalID; 179 uByte bAssocTermina [all...] |
| H A D | if_atureg.h | 273 uByte Cmd; 274 uByte Reserved; 281 uByte AtCmd; 282 uByte AtReserved; 286 uByte MIBType; 287 uByte MIBSize; 288 uByte MIBIndex; 289 uByte MIBReserved; 292 uByte data[72]; 297 uByte Cmd; [all …]
|
| H A D | usbcdc.h | 57 uByte bLength; 58 uByte bDescriptorType; 59 uByte bDescriptorSubtype; 64 uByte bLength; 65 uByte bDescriptorType; 66 uByte bDescriptorSubtype; 67 uByte bmCapabilities; 70 uByte bDataInterface; 74 uByte bLength; 75 uByte bDescriptorType; [all …]
|
| H A D | usb.h | 59 typedef u_int8_t uByte; typedef 85 uByte bmRequestType; 86 uByte bRequest; 171 uByte bLength; 172 uByte bDescriptorType; 173 uByte bDescriptorSubtype; 178 uByte bLength; 179 uByte bDescriptorType; 181 uByte bDeviceClass; 182 uByte bDeviceSubClass; [all …]
|
| H A D | umidireg.h | 42 uByte bLength; 43 uByte bDescriptorType; 44 uByte bDescriptorSubtype; 51 uByte bLength; 52 uByte bDescriptorType; 53 uByte bDescriptorSubType; 54 uByte bNumEmbMIDIJack; 59 uByte bLength; 60 uByte bDescriptorType; 61 uByte bDescriptorSubtype; [all …]
|
| H A D | umassvar.h | 80 uByte bCBWFlags; 83 uByte bCBWLUN; 84 uByte bCDBLength; 86 uByte CBWCDB[CBWCDBLENGTH]; 97 uByte bCSWStatus; 112 uByte type; 114 uByte value; 123 uByte asc; 124 uByte ascq;
|
| H A D | usbhid.h | 54 uByte bLength; 55 uByte bDescriptorType; 57 uByte bCountryCode; 58 uByte bNumDescriptors; 60 uByte bDescriptorType;
|
| H A D | uhid_rdesc.h | 31 static uByte uhid_graphire_report_descr[] = { 96 static uByte uhid_graphire3_4x5_report_descr[] = { 184 static const uByte uhid_xb360gp_report_descr[] = { 277 static const uByte uhid_xbonegp_report_descr[] = {
|
| H A D | uvisor.c | 89 uByte port_function_id; 90 uByte port; 109 uByte num_ports; 110 uByte endpoint_numbers_different; 114 uByte port; 115 uByte end_point_info;
|
| H A D | mbim.h | 591 uByte bLength; 592 uByte bDescriptorType; 593 uByte bDescriptorSubtype; 598 uByte bNumberFilters; 599 uByte bMaxFilterSize; 601 uByte bmNetworkCapabilities;
|
| H A D | usbdi.h | 170 const uByte *cur; 171 const uByte *end;
|
| H A D | uhidev.h | 67 uByte sc_report_id;
|
| H A D | ums.c | 281 static uByte match[] = { /* a descriptor fragment, offset: 12 */ in ums_fix_elecom_descriptor() 286 uByte *udesc = desc; in ums_fix_elecom_descriptor()
|
| H A D | if_udavreg.h | 204 uByte pktstat;
|
| H A D | if_auereg.h | 188 uByte aue_rxstat;
|
| H A D | umct.c | 309 uByte ls; in umct_set_line_state() 384 uByte adata; in umct_set_lcr()
|
| H A D | if_upl.c | 126 uByte sc_ibuf; 691 uByte stat; in upl_intr()
|
| /openbsd-src/gnu/gcc/libdecnumber/ |
| H A D | decUtility.c | 76 decDensePackCoeff (const decNumber * dn, uByte * bytes, Int len, Int shift) in decDensePackCoeff() 83 uByte *bout; /* -> current output byte */ in decDensePackCoeff() 181 *bout = (uByte) dpd; /* [top 2 bits truncated] */ in decDensePackCoeff() 183 *bout = (uByte) (dpd >> 8); in decDensePackCoeff() 186 *bout |= (uByte) (dpd << 2); in decDensePackCoeff() 188 *bout = (uByte) (dpd >> 6); in decDensePackCoeff() 191 *bout |= (uByte) (dpd << 4); in decDensePackCoeff() 193 *bout = (uByte) (dpd >> 4); in decDensePackCoeff() 196 *bout |= (uByte) (dpd << 6); in decDensePackCoeff() 198 *bout = (uByte) (dpd >> 2); in decDensePackCoeff() [all …]
|
| H A D | decUtility.h | 36 extern void decDensePackCoeff (const decNumber *, uByte *, Int, Int); 37 extern void decDenseUnpackCoeff (const uByte *, Int, decNumber *, Int, Int);
|
| H A D | decimal128.c | 82 uByte isneg = dn->bits & DECNEG; /* non-0 if original sign set */ in decimal128FromNumber() 109 uByte top; /* work */ in decimal128FromNumber() 144 d128->bytes[0] = (uByte) (comb << 2); in decimal128FromNumber() 175 d128->bytes[0] = (uByte) (comb << 2); in decimal128FromNumber()
|
| H A D | decimal64.c | 82 uByte isneg = dn->bits & DECNEG; /* non-0 if original sign set */ in decimal64FromNumber() 109 uByte top; /* work */ in decimal64FromNumber() 144 d64->bytes[0] = (uByte) (comb << 2); in decimal64FromNumber() 171 d64->bytes[0] = (uByte) (comb << 2); in decimal64FromNumber()
|
| H A D | decimal32.c | 82 uByte isneg = dn->bits & DECNEG; /* non-0 if original sign set */ in decimal32FromNumber() 109 uByte top; /* work */ in decimal32FromNumber() 144 d32->bytes[0] = (uByte) (comb << 2); in decimal32FromNumber() 172 d32->bytes[0] = (uByte) (comb << 2); in decimal32FromNumber()
|
| H A D | decNumber.c | 220 uByte, uInt *); 355 uByte bits = 0; /* working flags [assume +ve] */ in decNumberFromString() 665 decAddOp (res, &dzero, rhs, set, (uByte) (rhs->bits & DECNEG), &status); in decNumberAbs() 993 uByte bits = 0; /* result sign if errors */ in decNumberPower() 997 uByte dacbuff[sizeof (decNumber) + D2U (DECBUFFER + 9) * sizeof (Unit)]; in decNumberPower() 999 uByte lhsbuff[sizeof (decNumber) + D2U (DECBUFFER + 9) * sizeof (Unit)]; in decNumberPower() 1068 uByte rbits = rhs->bits; /* save */ in decNumberPower() 1360 uByte merged; /* merged flags */ in decNumberSameQuantum() 1469 uByte buff[sizeof (decNumber) + (D2U (DECBUFFER + 1) - 1) * sizeof (Unit)]; in decNumberSquareRoot() 1471 uByte bufa[sizeof (decNumber) + (D2U (DECBUFFER + 2) - 1) * sizeof (Unit)]; in decNumberSquareRoot() [all …]
|
| H A D | decNumberLocal.h | 46 #define uByte uint8_t macro
|
| /openbsd-src/usr.sbin/tcpdump/ |
| H A D | print-usbpcap.c | 39 void usbpcap_print_request_type(uByte); 210 usbpcap_print_request_type(uByte request_type) in usbpcap_print_request_type()
|