Home | History | Annotate | Download | only in i18n

Lines Matching defs:int

67   /* not use int or long directly.                                    */
73 #define Int int32_t
82 typedef long int LI; /* for printf arguments only */
83 #define DECNOINT 0 /* 1 to check no internal use of 'int' */
87 #define int ? /* enable to ensure that plain C 'int' */
283 Int exponent; /* Unadjusted signed exponent (q), or */
431 /* Get the exponent continuation from a decFloat *df as an Int */
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)