Lines Matching refs:uInt
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()
198 uInt msd; /* coefficient MSD */ in decimal128ToNumber()
199 uInt exp; /* exponent top two bits */ in decimal128ToNumber()
200 uInt comb; /* combination field */ in decimal128ToNumber()
201 const uInt *pu; /* work */ in decimal128ToNumber()
203 uInt sourar[4]; /* source 128-bit */ in decimal128ToNumber()
210 pu=(const uInt *)d128->bytes; /* overlay */ in decimal128ToNumber()
286 uInt msd; /* coefficient MSD */ in decimal128ToString()
288 uInt comb; /* combination field */ in decimal128ToString()
291 const uInt *pu; /* work */ in decimal128ToString()
297 uInt sourar[4]; /* source 128-bit */ in decimal128ToString()
304 pu=(const uInt *)d128->bytes; /* overlay */ in decimal128ToString()