Searched refs:uInt (Results 1 – 6 of 6) sorted by relevance
/qemu/libdecnumber/dpd/ |
H A D | decimal64.c | 51 extern const uInt COMBEXP[32], COMBMSD[32]; 54 extern void decDigitsFromDPD(decNumber *, const uInt *, Int); 55 extern void decDigitsToDPD(const decNumber *, uInt *, Int); 91 uInt status=0; /* status accumulator */ in decimal64FromNumber() 95 uInt *pu; /* .. */ in decimal64FromNumber() 96 uInt comb, exp; /* .. */ in decimal64FromNumber() 97 uInt targar[2]={0, 0}; /* target 64-bit */ in decimal64FromNumber() 148 uInt msd; /* work */ in decimal64FromNumber() 152 exp=(uInt)(dn->exponent+DECIMAL64_Bias); /* bias exponent */ in decimal64FromNumber() 161 uInt dpd[6]={0,0,0,0,0,0}; in decimal64FromNumber() [all …]
|
H A D | decimal32.c | 51 extern const uInt COMBEXP[32], COMBMSD[32]; 54 extern void decDigitsToDPD(const decNumber *, uInt *, Int); 55 extern void decDigitsFromDPD(decNumber *, const uInt *, Int); 85 uInt status=0; /* status accumulator */ in decimal32FromNumber() 89 uInt *pu; /* .. */ in decimal32FromNumber() 90 uInt comb, exp; /* .. */ in decimal32FromNumber() 91 uInt targ=0; /* target 32-bit */ in decimal32FromNumber() 140 uInt msd; /* work */ in decimal32FromNumber() 144 exp=(uInt)(dn->exponent+DECIMAL32_Bias); /* bias exponent */ in decimal32FromNumber() 154 if (dn->digits>3) targ|=(uInt)(BIN2DPD[dn->lsu[1]])<<10; in decimal32FromNumber() [all …]
|
H A D | decimal128.c | 51 extern const uInt COMBEXP[32], COMBMSD[32]; 54 extern void decDigitsFromDPD(decNumber *, const uInt *, Int); 55 extern void decDigitsToDPD(const decNumber *, uInt *, Int); 85 uInt status=0; /* status accumulator */ in decimal128FromNumber() 89 uInt *pu; /* .. */ in decimal128FromNumber() 90 uInt comb, exp; /* .. */ in decimal128FromNumber() 91 uInt targar[4]={0,0,0,0}; /* target 128-bit */ in decimal128FromNumber() 144 uInt msd; /* work */ in decimal128FromNumber() 148 exp=(uInt)(dn->exponent+DECIMAL128_Bias); /* bias exponent */ in decimal128FromNumber() 172 pu=(uInt *)d128->bytes; /* overlay */ in decimal128FromNumber() [all …]
|
/qemu/include/libdecnumber/ |
H A D | decNumberLocal.h | 83 #define uInt uint32_t macro 105 extern const uInt DPD2BINK[1024]; /* DPD -> 0-999000 */ 106 extern const uInt DPD2BINM[1024]; /* DPD -> 0-999000000 */ 117 uInt u0, u1, v0, v1, w0, w1, w2, t; \ 136 #define UINTAT(b) (*((uInt *)(b))) 152 #define CHARMASK ((((((((uInt)'0')<<8)+'0')<<8)+'0')<<8)+'0') 292 uInt sign; /* 0=positive, DECFLOAT_Sign=negative */ 328 extern const uInt DECCOMBMSD[64]; /* Combination field -> MSD */ 329 extern const uInt DECCOMBFROM[48]; /* exp+msd -> Combination */ 405 || ((dpd)&(((uInt)0x6e)<<(k)))!=(((uInt)0x6e)<<(k))) [all …]
|
/qemu/libdecnumber/ |
H A D | decContext.c | 74 decContext *decContextClearStatus(decContext *context, uInt mask) { in decContextClearStatus() 178 uInt decContextGetStatus(decContext *context) { in decContextGetStatus() 195 uInt newstatus, uInt mask) { in decContextRestoreStatus() 211 uInt decContextSaveStatus(decContext *context, uInt mask) { in decContextSaveStatus() 240 decContext * decContextSetStatus(decContext *context, uInt status) { in decContextSetStatus() 356 decContext * decContextSetStatusQuiet(decContext *context, uInt status) { in decContextSetStatusQuiet() 404 uInt decContextTestSavedStatus(uInt oldstatus, uInt mask) { in decContextTestSavedStatus() 418 uInt decContextTestStatus(decContext *context, uInt mask) { in decContextTestStatus()
|
H A D | decNumber.c | 207 #define ueInt uInt /* unsigned extended integer */ 211 static const uInt multies[]={131073, 26215, 5243, 1049, 210}; 213 #define QUOT10(u, n) ((((uInt)(u)>>(n))*multies[n])>>17) 225 decContext *, uByte, uInt *); 227 static uInt decCheckMath(const decNumber *, decContext *, uInt *); 228 static void decApplyRound(decNumber *, decContext *, Int, uInt *); 232 Flag, uInt *); 234 Int *, uInt *); 237 const decNumber *, decContext *, Flag, uInt *); 239 decContext *, uInt *); [all …]
|