Searched refs:DECSPECIAL (Results 1 – 4 of 4) sorted by relevance
47 #define DECSPECIAL (DECINF|DECNAN|DECSNAN) /* any special value */ macro184 #define decNumberIsFinite(dn) (((dn)->bits&DECSPECIAL)==0)190 #define decNumberIsSpecial(dn) (((dn)->bits&DECSPECIAL)!=0)193 && (((dn)->bits&DECSPECIAL)==0))
291 U_ASSERT((fDecNumber->bits & DECSPECIAL) == 0); // Not Infinity or NaN in setDecimalAt()305 U_ASSERT((fDecNumber->bits & DECSPECIAL) == 0); // Not Infinity or NaN in getDecimalAt()306 if (decNumberIsZero(fDecNumber) || ((fDecNumber->bits & DECSPECIAL) != 0)) { in getDecimalAt()
303 #define SPECIALARG (rhs->bits & DECSPECIAL)304 #define SPECIALARGS ((lhs->bits | rhs->bits) & DECSPECIAL)407 if (dn->bits&DECSPECIAL || dn->digits>10 || dn->exponent!=0) ; /* bad */ in uprv_decNumberToInt32()442 if (dn->bits&DECSPECIAL || dn->digits>10 || dn->exponent!=0 in uprv_decNumberToUInt32()1462 if (!(rhs->bits&(DECNEG|DECSPECIAL)) && !ISZERO(rhs)) { in uprv_decNumberLog10()1508 if (a->bits&DECSPECIAL || ISZERO(a)) { in uprv_decNumberLog10()3669 if (dn->bits&DECSPECIAL) { /* Is a special value */ in decToString()6644 if ((dn->bits & DECSPECIAL) /* fast exit if special .. */7866 if (dn->bits&DECSPECIAL) { /* Is a special value */8013 if (dn->bits & DECSPECIAL) {[all …]
781 private static char DECSPECIAL[] = { '\u0040', // 5f blank field in vt3201835 c = DECSPECIAL[(short) c - 0x5f]; in putChar()1856 c = DECSPECIAL[c - '\u00df']; in putChar()