Searched refs:DECINF (Results 1 – 5 of 5) sorted by relevance
45 #define DECINF 0x40 /* 1=Infinity */ macro49 #define DECSPECIAL (DECINF|DECNAN|DECSNAN) /* any special value */193 #define decNumberIsInfinite(dn) (((dn)->bits&DECINF)!=0)
111 if (dn->bits&DECINF) targ=DECIMAL_Inf<<24; in decimal32FromNumber()209 dn->bits|=DECINF; in decimal32ToNumber()
115 if (dn->bits&DECINF) targhi=DECIMAL_Inf<<24; in decimal128FromNumber()233 dn->bits|=DECINF; in decimal128ToNumber()
119 if (dn->bits&DECINF) targhi=DECIMAL_Inf<<24; in decimal64FromNumber()244 dn->bits|=DECINF; in decimal64ToNumber()
713 dn->bits=bits | DECINF; in decNumberFromString()1509 res->bits=DECNEG|DECINF; /* -Infinity */ in decNumberLogB()1834 if ((rhs->bits&(DECINF|DECNEG))==DECINF) { in decNumberNextMinus()1870 if ((rhs->bits&(DECINF|DECNEG))==(DECINF|DECNEG)) { in decNumberNextPlus()1921 if ((lhs->bits&(DECINF|DECNEG))==(DECINF|DECNEG)) { in decNumberNextToward()1931 if ((lhs->bits&(DECINF|DECNEG))==DECINF) { in decNumberNextToward()2171 if (rhsneg) res->bits|=DECINF; /* +Infinity [else is +0] */ in decNumberPower()2182 if (!rhsneg) res->bits|=DECINF; /* +Infinity [else is +0] */ in decNumberPower()2211 if (!(rbits & DECNEG)) bits|=DECINF; /* was not a **-n */ in decNumberPower()2236 bits|=DECINF; in decNumberPower()[all …]