Lines Matching defs:Int
85 /* not use int or long directly. */
91 #define Int int32_t
100 typedef long int LI; /* for printf arguments only */
101 #define DECNOINT 0 /* 1 to check no internal use of 'int' */
105 #define int ? /* enable to ensure that plain C 'int' */
313 Int exponent; /* Unadjusted signed exponent (q), or */
462 /* Get the exponent continuation from a decFloat *df as an Int */
463 #define GETECON(df) ((Int)((DFWORD((df), 0)&0x03ffffff)>>(32-6-DECECONL)))
465 #define GETWECON(df) ((Int)((DFWWORD((df), 0)&0x03ffffff)>>(32-6-DECWECONL)))
467 #define GETEXP(df) ((Int)(DECCOMBEXP[DFWORD((df), 0)>>26]+GETECON(df)))
469 #define GETEXPUN(df) ((Int)GETEXP(df)-DECBIAS)