Searched refs:DECSPECIAL (Results 1 – 4 of 4) sorted by relevance
49 #define DECSPECIAL (DECINF|DECNAN|DECSNAN) /* any special value */ macro186 #define decNumberIsFinite(dn) (((dn)->bits&DECSPECIAL)==0)192 #define decNumberIsSpecial(dn) (((dn)->bits&DECSPECIAL)!=0)195 && (((dn)->bits&DECSPECIAL)==0))
317 U_ASSERT((fDecNumber->bits & DECSPECIAL) == 0); // Not Infinity or NaN in setDecimalAt()331 U_ASSERT((fDecNumber->bits & DECSPECIAL) == 0); // Not Infinity or NaN in getDecimalAt()332 if (decNumberIsZero(fDecNumber) || ((fDecNumber->bits & DECSPECIAL) != 0)) { in getDecimalAt()
305 #define SPECIALARG (rhs->bits & DECSPECIAL)306 #define SPECIALARGS ((lhs->bits | rhs->bits) & DECSPECIAL)409 if (dn->bits&DECSPECIAL || dn->digits>10 || dn->exponent!=0) ; /* bad */ in uprv_decNumberToInt32()444 if (dn->bits&DECSPECIAL || dn->digits>10 || dn->exponent!=0 in uprv_decNumberToUInt32()1464 if (!(rhs->bits&(DECNEG|DECSPECIAL)) && !ISZERO(rhs)) { in uprv_decNumberLog10()1510 if (a->bits&DECSPECIAL || ISZERO(a)) { in uprv_decNumberLog10()3671 if (dn->bits&DECSPECIAL) { /* Is a special value */ in decToString()6646 if ((dn->bits & DECSPECIAL) /* fast exit if special .. */7868 if (dn->bits&DECSPECIAL) { /* Is a special value */8015 if (dn->bits & DECSPECIAL) {[all …]
780 private static char DECSPECIAL[] = { '\u0040', // 5f blank field in vt3201834 c = DECSPECIAL[(short) c - 0x5f]; in putChar()1855 c = DECSPECIAL[c - '\u00df']; in putChar()