Home
last modified time | relevance | path

Searched refs:Int (Results 1 – 7 of 7) sorted by relevance

/qemu/libdecnumber/
H A DdecNumber.c197 #define BADINT (Int)0x80000000 /* most-negative Int; error indicator */
199 #define BIGEVEN (Int)0x80000002
200 #define BIGODD (Int)0x80000003
206 #define eInt Int /* extended integer */
228 static void decApplyRound(decNumber *, decContext *, Int, uInt *);
229 static Int decCompare(const decNumber *lhs, const decNumber *rhs, Flag);
234 Int *, uInt *);
235 static decNumber * decDecap(decNumber *, Int);
240 static void decFinalize(decNumber *, decContext *, Int *, uInt *);
241 static Int decGetDigits(Unit *, Int);
[all …]
H A DdecContext.c45 static const Int mfcone=1; /* constant 1 */
92 decContext * decContextDefault(decContext *context, Int kind) { in decContextDefault()
369 Int status=context->status; in decContextStatusToString()
/qemu/libdecnumber/dpd/
H A Ddecimal64.c54 extern void decDigitsFromDPD(decNumber *, const uInt *, Int);
55 extern void decDigitsToDPD(const decNumber *, uInt *, Int);
92 Int ae; /* adjusted exponent */ in decimal64FromNumber()
149 Int pad=0; /* coefficient pad digits */ in decimal64FromNumber()
163 Int d=dn->digits; in decimal64FromNumber()
219 Int need; /* .. */ in decimal64ToNumber()
303 Int exp; /* exponent top two bits or full */ in decimal64ToString()
309 Int dpd; /* .. */ in decimal64ToString()
310 Int pre, e; /* .. */ in decimal64ToString()
329 if (((Int)sourhi)<0) *c++='-'; /* handle sign */ in decimal64ToString()
[all …]
H A Ddecimal128.c54 extern void decDigitsFromDPD(decNumber *, const uInt *, Int);
55 extern void decDigitsToDPD(const decNumber *, uInt *, Int);
86 Int ae; /* adjusted exponent */ in decimal128FromNumber()
145 Int pad=0; /* coefficient pad digits */ in decimal128FromNumber()
202 Int need; /* .. */ in decimal128ToNumber()
287 Int exp; /* exponent top two bits or full */ in decimal128ToString()
293 Int dpd; /* .. */ in decimal128ToString()
294 Int pre, e; /* .. */ in decimal128ToString()
319 if (((Int)sourhi)<0) *c++='-'; /* handle sign */ in decimal128ToString()
421 Int thou=((e>>3)*1049)>>17; /* e/1000 */ in decimal128ToString()
[all …]
H A Ddecimal32.c54 extern void decDigitsToDPD(const decNumber *, uInt *, Int);
55 extern void decDigitsFromDPD(decNumber *, const uInt *, Int);
86 Int ae; /* adjusted exponent */ in decimal32FromNumber()
141 Int pad=0; /* coefficient pad digits */ in decimal32FromNumber()
260 Int exp; /* exponent top two bits or full */ in decimal32ToString()
267 Int dpd; /* .. */ in decimal32ToString()
268 Int pre, e; /* .. */ in decimal32ToString()
276 if (((Int)sour)<0) *c++='-'; /* handle sign */ in decimal32ToString()
470 Int i, j=0; in decimal32Show()
/qemu/tests/qapi-schema/
H A Dbad-base.json3 { 'struct': 'Int', 'data': { 'data': 'int' } }
8 'data': { 'a': 'Int', 'b': 'Str' } }
/qemu/include/libdecnumber/
H A DdecNumberLocal.h82 #define Int int32_t macro
293 Int exponent; /* Unadjusted signed exponent (q), or */
432 #define GETECON(df) ((Int)((DFWORD((df), 0)&0x03ffffff)>>(32-6-DECECONL)))
434 #define GETWECON(df) ((Int)((DFWWORD((df), 0)&0x03ffffff)>>(32-6-DECWECONL)))
436 #define GETEXP(df) ((Int)(DECCOMBEXP[DFWORD((df), 0)>>26]+GETECON(df)))
438 #define GETEXPUN(df) ((Int)GETEXP(df)-DECBIAS)