Home
last modified time | relevance | path

Searched refs:uByte (Results 1 – 25 of 66) sorted by relevance

123

/netbsd-src/sys/dev/usb/
H A Duaudioreg.h57 uByte bLength;
58 uByte bDescriptorType;
59 uByte bEndpointAddress;
60 uByte bmAttributes;
62 uByte bInterval;
73 uByte bRefresh;
74 uByte bSynchAddress;
79 uByte bLength;
80 uByte bDescriptorType;
81 uByte bDescriptorSubtype;
[all …]
H A Duvideoreg.h48 uByte data4[8];
88 uByte bLength;
89 uByte bDescriptorType;
90 uByte bDescriptorSubtype;
95 uByte bLength;
96 uByte bDescriptorType;
97 uByte bDescriptorSubtype;
101 uByte bInCollection;
103 uByte baInterfaceNr[];
108 uByte bLength;
[all …]
H A Dif_atureg.h240 uByte Cmd;
241 uByte Reserved;
248 uByte AtCmd;
249 uByte AtReserved;
253 uByte MIBType;
254 uByte MIBSize;
255 uByte MIBIndex;
256 uByte MIBReserved;
259 uByte data[72];
264 uByte Cmd;
[all …]
H A Dusb.h72 typedef uint8_t uByte; typedef
90 uByte bmRequestType;
91 uByte bRequest;
213 uByte bLength;
214 uByte bDescriptorType;
220 uByte bLength;
221 uByte bDescriptorType;
227 uByte bDeviceClass;
228 uByte bDeviceSubClass;
229 uByte bDeviceProtocol;
[all …]
H A Dusbcdc.h56 uByte bLength;
57 uByte bDescriptorType;
58 uByte bDescriptorSubtype;
63 uByte bLength;
64 uByte bDescriptorType;
65 uByte bDescriptorSubtype;
66 uByte bmCapabilities;
69 uByte bDataInterface;
73 uByte bLength;
74 uByte bDescriptorType;
[all …]
H A Duirdavar.h66 uByte bLength;
67 uByte bDescriptorType;
70 uByte bmDataSize;
77 uByte bmWindowSize;
85 uByte bmMinTurnaroundTime;
104 uByte bmAdditionalBOFs;
113 uByte bIrdaSniff;
114 uByte bMaxUnicastList;
H A Dumassvar.h83 uByte bCBWFlags;
86 uByte bCBWLUN;
87 uByte bCDBLength;
89 uByte CBWCDB[CBWCDBLENGTH];
100 uByte bCSWStatus;
115 uByte type;
117 uByte value;
126 uByte asc;
127 uByte ascq;
H A Dusbhid.h54 uByte bLength;
55 uByte bDescriptorType;
57 uByte bCountryCode;
58 uByte bNumDescriptors;
60 uByte bDescriptorType;
H A Dusbdi_util.h97 uByte bLength;
98 uByte bDescriptorType;
99 uByte bDescriptorSubtype;
104 const uByte *cur;
105 const uByte *end;
/netbsd-src/external/gpl3/gdb/dist/libdecnumber/
H A DdecCommon.c232 static uByte allnines[DECPMAX]=
244 uByte *ub; /* work */ in decFinalize()
247 uByte *umsd=num->msd; /* local copy */ in decFinalize()
248 uByte *ulsd=num->lsd; /* .. */ in decFinalize()
287 uByte *roundat; /* -> re-round digit */ in decFinalize()
288 uByte reround; /* reround value */ in decFinalize()
471 uByte buffer[ROUNDUP(DECPMAX+3, 4)]; /* [+3 allows uInt padding] */ in decFinalize()
472 uByte *s=umsd; /* source */ in decFinalize()
473 uByte *t=buffer; /* safe target */ in decFinalize()
474 uByte *tlsd=buffer+(ulsd-umsd)+shift; /* target LSD */ in decFinalize()
[all …]
H A DdecPacked.c69 uByte * decPackedFromNumber(uByte *bcd, Int length, Int *scale, in decPackedFromNumber()
72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
157 decNumber * decPackedToNumber(const uByte *bcd, Int length, in decPackedToNumber()
159 const uByte *last=bcd+length-1; /* -> last byte */ in decPackedToNumber()
160 const uByte *first; /* -> first non-zero byte */ in decPackedToNumber()
H A DdecNumberLocal.h88 #define uByte uint8_t macro
110 extern const uByte DECSTICKYTAB[10]; /* re-round digits if sticky */
118 extern const uByte DPD2BCD8[4096]; /* DPD -> ddd + len */
119 extern const uByte BIN2BCD8[4000]; /* 0-999 -> ddd + len */
249 extern const uByte d2utable[DECMAXD2U+1];
310 uByte *msd; /* -> most significant digit */
311 uByte *lsd; /* -> least ditto */
507 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \
513 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \
524 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \
[all …]
H A DdecBasic.c63 static void decFiniteMultiply(bcdnum *, uByte *, const decFloat *,
184 uByte bcdacc[(DIVOPLEN+1)*9+2]; /* for quotient in BCD, +1, +1 */ in decDivide()
192 uByte *ub; /* .. */ in decDivide()
624 uByte *roundat; /* -> re-round digit */ in decDivide()
625 uByte reround; /* reround value */ in decDivide()
718 static void decFiniteMultiply(bcdnum *num, uByte *bcdacc, in decFiniteMultiply()
723 uByte *ub; /* .. */ in decFiniteMultiply()
1117 uByte *ub, *us, *ut; /* work */ in decFloatAdd()
1132 uByte acc[4+2+DECPMAX*3+8]; in decFloatAdd()
1133 uByte buf[4+2+DECPMAX*2]; in decFloatAdd()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libdecnumber/
H A DdecCommon.c232 static uByte allnines[DECPMAX]=
244 uByte *ub; /* work */ in decFinalize()
247 uByte *umsd=num->msd; /* local copy */ in decFinalize()
248 uByte *ulsd=num->lsd; /* .. */ in decFinalize()
287 uByte *roundat; /* -> re-round digit */ in decFinalize()
288 uByte reround; /* reround value */ in decFinalize()
471 uByte buffer[ROUNDUP(DECPMAX+3, 4)]; /* [+3 allows uInt padding] */ in decFinalize()
472 uByte *s=umsd; /* source */ in decFinalize()
473 uByte *t=buffer; /* safe target */ in decFinalize()
474 uByte *tlsd=buffer+(ulsd-umsd)+shift; /* target LSD */ in decFinalize()
[all …]
H A DdecPacked.c69 uByte * decPackedFromNumber(uByte *bcd, Int length, Int *scale, in decPackedFromNumber()
72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
157 decNumber * decPackedToNumber(const uByte *bcd, Int length, in decPackedToNumber()
159 const uByte *last=bcd+length-1; /* -> last byte */ in decPackedToNumber()
160 const uByte *first; /* -> first non-zero byte */ in decPackedToNumber()
H A DdecNumberLocal.h88 #define uByte uint8_t macro
110 extern const uByte DECSTICKYTAB[10]; /* re-round digits if sticky */
118 extern const uByte DPD2BCD8[4096]; /* DPD -> ddd + len */
119 extern const uByte BIN2BCD8[4000]; /* 0-999 -> ddd + len */
249 extern const uByte d2utable[DECMAXD2U+1];
310 uByte *msd; /* -> most significant digit */
311 uByte *lsd; /* -> least ditto */
507 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \
513 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \
524 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \
[all …]
H A DdecBasic.c63 static void decFiniteMultiply(bcdnum *, uByte *, const decFloat *,
184 uByte bcdacc[(DIVOPLEN+1)*9+2]; /* for quotient in BCD, +1, +1 */ in decDivide()
192 uByte *ub; /* .. */ in decDivide()
624 uByte *roundat; /* -> re-round digit */ in decDivide()
625 uByte reround; /* reround value */ in decDivide()
718 static void decFiniteMultiply(bcdnum *num, uByte *bcdacc, in decFiniteMultiply()
723 uByte *ub; /* .. */ in decFiniteMultiply()
1117 uByte *ub, *us, *ut; /* work */ in decFloatAdd()
1132 uByte acc[4+2+DECPMAX*3+8]; in decFloatAdd()
1133 uByte buf[4+2+DECPMAX*2]; in decFloatAdd()
[all …]
/netbsd-src/external/gpl3/gdb.old/dist/libdecnumber/
H A DdecCommon.c232 static uByte allnines[DECPMAX]=
244 uByte *ub; /* work */ in decFinalize()
247 uByte *umsd=num->msd; /* local copy */ in decFinalize()
248 uByte *ulsd=num->lsd; /* .. */ in decFinalize()
287 uByte *roundat; /* -> re-round digit */ in decFinalize()
288 uByte reround; /* reround value */ in decFinalize()
471 uByte buffer[ROUNDUP(DECPMAX+3, 4)]; /* [+3 allows uInt padding] */ in decFinalize()
472 uByte *s=umsd; /* source */ in decFinalize()
473 uByte *t=buffer; /* safe target */ in decFinalize()
474 uByte *tlsd=buffer+(ulsd-umsd)+shift; /* target LSD */ in decFinalize()
[all …]
H A DdecPacked.c69 uByte * decPackedFromNumber(uByte *bcd, Int length, Int *scale, in decPackedFromNumber()
72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
157 decNumber * decPackedToNumber(const uByte *bcd, Int length, in decPackedToNumber()
159 const uByte *last=bcd+length-1; /* -> last byte */ in decPackedToNumber()
160 const uByte *first; /* -> first non-zero byte */ in decPackedToNumber()
H A DdecNumberLocal.h88 #define uByte uint8_t macro
110 extern const uByte DECSTICKYTAB[10]; /* re-round digits if sticky */
118 extern const uByte DPD2BCD8[4096]; /* DPD -> ddd + len */
119 extern const uByte BIN2BCD8[4000]; /* 0-999 -> ddd + len */
249 extern const uByte d2utable[DECMAXD2U+1];
310 uByte *msd; /* -> most significant digit */
311 uByte *lsd; /* -> least ditto */
507 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \
513 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \
524 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \
[all …]
H A DdecBasic.c63 static void decFiniteMultiply(bcdnum *, uByte *, const decFloat *,
184 uByte bcdacc[(DIVOPLEN+1)*9+2]; /* for quotient in BCD, +1, +1 */ in decDivide()
192 uByte *ub; /* .. */ in decDivide()
624 uByte *roundat; /* -> re-round digit */ in decDivide()
625 uByte reround; /* reround value */ in decDivide()
718 static void decFiniteMultiply(bcdnum *num, uByte *bcdacc, in decFiniteMultiply()
723 uByte *ub; /* .. */ in decFiniteMultiply()
1117 uByte *ub, *us, *ut; /* work */ in decFloatAdd()
1132 uByte acc[4+2+DECPMAX*3+8]; in decFloatAdd()
1133 uByte buf[4+2+DECPMAX*2]; in decFloatAdd()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libdecnumber/
H A DdecCommon.c232 static uByte allnines[DECPMAX]=
244 uByte *ub; /* work */ in decFinalize()
247 uByte *umsd=num->msd; /* local copy */ in decFinalize()
248 uByte *ulsd=num->lsd; /* .. */ in decFinalize()
287 uByte *roundat; /* -> re-round digit */ in decFinalize()
288 uByte reround; /* reround value */ in decFinalize()
471 uByte buffer[ROUNDUP(DECPMAX+3, 4)]; /* [+3 allows uInt padding] */ in decFinalize()
472 uByte *s=umsd; /* source */ in decFinalize()
473 uByte *t=buffer; /* safe target */ in decFinalize()
474 uByte *tlsd=buffer+(ulsd-umsd)+shift; /* target LSD */ in decFinalize()
[all …]
H A DdecPacked.c69 uByte * decPackedFromNumber(uByte *bcd, Int length, Int *scale, in decPackedFromNumber()
72 uByte obyte, *out; /* current output byte, and where it goes */ in decPackedFromNumber()
119 obyte=(uByte)(u-X10(temp)); in decPackedFromNumber()
122 obyte=(uByte)(u%10); in decPackedFromNumber()
157 decNumber * decPackedToNumber(const uByte *bcd, Int length, in decPackedToNumber()
159 const uByte *last=bcd+length-1; /* -> last byte */ in decPackedToNumber()
160 const uByte *first; /* -> first non-zero byte */ in decPackedToNumber()
H A DdecNumberLocal.h88 #define uByte uint8_t macro
110 extern const uByte DECSTICKYTAB[10]; /* re-round digits if sticky */
118 extern const uByte DPD2BCD8[4096]; /* DPD -> ddd + len */
119 extern const uByte BIN2BCD8[4000]; /* 0-999 -> ddd + len */
249 extern const uByte d2utable[DECMAXD2U+1];
310 uByte *msd; /* -> most significant digit */
311 uByte *lsd; /* -> least ditto */
507 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \
513 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \
524 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \
[all …]
H A DdecBasic.c63 static void decFiniteMultiply(bcdnum *, uByte *, const decFloat *,
184 uByte bcdacc[(DIVOPLEN+1)*9+2]; /* for quotient in BCD, +1, +1 */ in decDivide()
192 uByte *ub; /* .. */ in decDivide()
624 uByte *roundat; /* -> re-round digit */ in decDivide()
625 uByte reround; /* reround value */ in decDivide()
718 static void decFiniteMultiply(bcdnum *num, uByte *bcdacc, in decFiniteMultiply()
723 uByte *ub; /* .. */ in decFiniteMultiply()
1117 uByte *ub, *us, *ut; /* work */ in decFloatAdd()
1132 uByte acc[4+2+DECPMAX*3+8]; in decFloatAdd()
1133 uByte buf[4+2+DECPMAX*2]; in decFloatAdd()
[all …]

123