Home
last modified time | relevance | path

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

/openbmc/qemu/include/libdecnumber/
H A DdecNumber.h50 #define DECSPECIAL (DECINF|DECNAN|DECSNAN) /* any special value */ macro
193 #define decNumberIsFinite(dn) (((dn)->bits&DECSPECIAL)==0)
199 #define decNumberIsSpecial(dn) (((dn)->bits&DECSPECIAL)!=0)
202 && (((dn)->bits&DECSPECIAL)==0))
/openbmc/qemu/target/ppc/
H A Ddfp_helper.c409 dn->bits &= ~DECSPECIAL; in dfp_makeQNaN()
1319 dfp.t.bits &= ~DECSPECIAL; \
1382 unsigned special = dfp.a.bits & DECSPECIAL; \
1390 dfp.a.bits &= ~DECSPECIAL; \
/openbmc/qemu/libdecnumber/dpd/
H A Ddecimal32.c111 if (dn->bits&DECSPECIAL) { /* a special value */ in decimal32FromNumber()
H A Ddecimal128.c115 if (dn->bits&DECSPECIAL) { /* a special value */ in decimal128FromNumber()
H A Ddecimal64.c119 if (dn->bits&DECSPECIAL) { /* a special value */ in decimal64FromNumber()
/openbmc/qemu/libdecnumber/
H A DdecNumber.c279 #define SPECIALARG (rhs->bits & DECSPECIAL)
280 #define SPECIALARGS ((lhs->bits | rhs->bits) & DECSPECIAL)
379 if (dn->bits&DECSPECIAL || dn->digits>10 || dn->exponent!=0) ; /* bad */ in decNumberToInt32()
414 if (dn->bits&DECSPECIAL || dn->digits>10 || dn->exponent!=0 in decNumberToUInt32()
1601 if (!(rhs->bits&(DECNEG|DECSPECIAL)) && !ISZERO(rhs)) { in decNumberLog10()
1647 if (a->bits&DECSPECIAL || ISZERO(a)) { in decNumberLog10()
3787 if (dn->bits&DECSPECIAL) { /* Is a special value */ in decToString()
6749 if ((dn->bits & DECSPECIAL) /* fast exit if special .. */
8002 if (dn->bits&DECSPECIAL) { /* Is a special value */
8149 if (dn->bits & DECSPECIAL) {
[all …]