Home
last modified time | relevance | path

Searched refs:DECSPECIAL (Results 1 – 3 of 3) sorted by relevance

/external/icu4c/i18n/
DdecNumber.h47 #define DECSPECIAL (DECINF|DECNAN|DECSNAN) /* any special value */ macro
184 #define decNumberIsFinite(dn) (((dn)->bits&DECSPECIAL)==0)
190 #define decNumberIsSpecial(dn) (((dn)->bits&DECSPECIAL)!=0)
193 && (((dn)->bits&DECSPECIAL)==0))
Ddigitlst.cpp269 U_ASSERT((fDecNumber->bits & DECSPECIAL) == 0); // Not Infinity or NaN in setDecimalAt()
283 U_ASSERT((fDecNumber->bits & DECSPECIAL) == 0); // Not Infinity or NaN in getDecimalAt()
284 if (decNumberIsZero(fDecNumber) || ((fDecNumber->bits & DECSPECIAL) != 0)) { in getDecimalAt()
DdecNumber.c288 #define SPECIALARG (rhs->bits & DECSPECIAL)
289 #define SPECIALARGS ((lhs->bits | rhs->bits) & DECSPECIAL)
392 if (dn->bits&DECSPECIAL || dn->digits>10 || dn->exponent!=0) ; /* bad */ in uprv_decNumberToInt32()
427 if (dn->bits&DECSPECIAL || dn->digits>10 || dn->exponent!=0 in uprv_decNumberToUInt32()
1443 if (!(rhs->bits&(DECNEG|DECSPECIAL)) && !ISZERO(rhs)) { in uprv_decNumberLog10()
1489 if (a->bits&DECSPECIAL || ISZERO(a)) { in uprv_decNumberLog10()
3640 if (dn->bits&DECSPECIAL) { /* Is a special value */ in decToString()
6602 if ((dn->bits & DECSPECIAL) /* fast exit if special .. */
7823 if (dn->bits&DECSPECIAL) { /* Is a special value */
7970 if (dn->bits & DECSPECIAL) {
[all …]