Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
DdecNumber.h49 #define DECSPECIAL (DECINF|DECNAN|DECSNAN) /* any special value */ macro
186 #define decNumberIsFinite(dn) (((dn)->bits&DECSPECIAL)==0)
192 #define decNumberIsSpecial(dn) (((dn)->bits&DECSPECIAL)!=0)
195 && (((dn)->bits&DECSPECIAL)==0))
DdecNumber.cpp305 #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()
1466 if (!(rhs->bits&(DECNEG|DECSPECIAL)) && !ISZERO(rhs)) { in uprv_decNumberLog10()
1512 if (a->bits&DECSPECIAL || ISZERO(a)) { in uprv_decNumberLog10()
3673 if (dn->bits&DECSPECIAL) { /* Is a special value */ in decToString()
6648 if ((dn->bits & DECSPECIAL) /* fast exit if special .. */
7870 if (dn->bits&DECSPECIAL) { /* Is a special value */
8017 if (dn->bits & DECSPECIAL) {
[all …]
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
Dvt320.java780 private static char DECSPECIAL[] = { '\u0040', // 5f blank field in vt320
1834 c = DECSPECIAL[(short) c - 0x5f]; in putChar()
1855 c = DECSPECIAL[c - '\u00df']; in putChar()