Home
last modified time | relevance | path

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

/openbmc/qemu/include/libdecnumber/
H A DdecNumber.h49 #define DECSPECIAL (DECINF|DECNAN|DECSNAN) /* any special value */ macro
192 #define decNumberIsFinite(dn) (((dn)->bits&DECSPECIAL)==0)
198 #define decNumberIsSpecial(dn) (((dn)->bits&DECSPECIAL)!=0)
201 && (((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.c110 if (dn->bits&DECSPECIAL) { /* a special value */ in decimal32FromNumber()
H A Ddecimal128.c114 if (dn->bits&DECSPECIAL) { /* a special value */ in decimal128FromNumber()
H A Ddecimal64.c118 if (dn->bits&DECSPECIAL) { /* a special value */ in decimal64FromNumber()
/openbmc/qemu/libdecnumber/
H A DdecNumber.c278 #define SPECIALARG (rhs->bits & DECSPECIAL)
279 #define SPECIALARGS ((lhs->bits | rhs->bits) & DECSPECIAL)
378 if (dn->bits&DECSPECIAL || dn->digits>10 || dn->exponent!=0) ; /* bad */ in decNumberToInt32()
413 if (dn->bits&DECSPECIAL || dn->digits>10 || dn->exponent!=0 in decNumberToUInt32()
1600 if (!(rhs->bits&(DECNEG|DECSPECIAL)) && !ISZERO(rhs)) { in decNumberLog10()
1646 if (a->bits&DECSPECIAL || ISZERO(a)) { in decNumberLog10()
3786 if (dn->bits&DECSPECIAL) { /* Is a special value */ in decToString()
6748 if ((dn->bits & DECSPECIAL) /* fast exit if special .. */
8001 if (dn->bits&DECSPECIAL) { /* Is a special value */
8148 if (dn->bits & DECSPECIAL) {
[all …]