Searched refs:DECINF (Results 1 – 5 of 5) sorted by relevance
46 #define DECINF 0x40 /* 1=Infinity */ macro50 #define DECSPECIAL (DECINF|DECNAN|DECSNAN) /* any special value */194 #define decNumberIsInfinite(dn) (((dn)->bits&DECINF)!=0)
112 if (dn->bits&DECINF) targ=DECIMAL_Inf<<24; in decimal32FromNumber()210 dn->bits|=DECINF; in decimal32ToNumber()
116 if (dn->bits&DECINF) targhi=DECIMAL_Inf<<24; in decimal128FromNumber()234 dn->bits|=DECINF; in decimal128ToNumber()
120 if (dn->bits&DECINF) targhi=DECIMAL_Inf<<24; in decimal64FromNumber()245 dn->bits|=DECINF; in decimal64ToNumber()
714 dn->bits=bits | DECINF; in decNumberFromString()1510 res->bits=DECNEG|DECINF; /* -Infinity */ in decNumberLogB()1835 if ((rhs->bits&(DECINF|DECNEG))==DECINF) { in decNumberNextMinus()1871 if ((rhs->bits&(DECINF|DECNEG))==(DECINF|DECNEG)) { in decNumberNextPlus()1922 if ((lhs->bits&(DECINF|DECNEG))==(DECINF|DECNEG)) { in decNumberNextToward()1932 if ((lhs->bits&(DECINF|DECNEG))==DECINF) { in decNumberNextToward()2172 if (rhsneg) res->bits|=DECINF; /* +Infinity [else is +0] */ in decNumberPower()2183 if (!rhsneg) res->bits|=DECINF; /* +Infinity [else is +0] */ in decNumberPower()2212 if (!(rbits & DECNEG)) bits|=DECINF; /* was not a **-n */ in decNumberPower()2237 bits|=DECINF; in decNumberPower()[all …]