Home
last modified time | relevance | path

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

/qemu/include/libdecnumber/
H A DdecNumber.h48 #define DECSNAN 0x10 /* 1=sNaN */ macro
50 #define DECSPECIAL (DECINF|DECNAN|DECSNAN) /* any special value */
195 #define decNumberIsNaN(dn) (((dn)->bits&(DECNAN|DECSNAN))!=0)
198 #define decNumberIsSNaN(dn) (((dn)->bits&(DECSNAN))!=0)
/qemu/libdecnumber/dpd/
H A Ddecimal32.c213 else if (sour&0x02000000) dn->bits|=DECSNAN; in decimal32ToNumber()
H A Ddecimal128.c237 else if (sourhi&0x02000000) dn->bits|=DECSNAN; in decimal128ToNumber()
H A Ddecimal64.c248 else if (sourhi&0x02000000) dn->bits|=DECSNAN; in decimal64ToNumber()
/qemu/libdecnumber/
H A DdecNumber.c723 dn->bits=bits | DECSNAN; in decNumberFromString()
3793 if (dn->bits&DECSNAN) { /* signalling NaN */ in decToString()
3998 if (SPECIALARGS & (DECSNAN | DECNAN)) /* a NaN */ in decAddOp()
5054 if (SPECIALARGS & (DECSNAN | DECNAN)) { /* one or two NaNs */ in decMultiplyOp()
6017 if (SPECIALARGS & (DECSNAN | DECNAN))
6198 merged=(lhs->bits | rhs->bits) & (DECSNAN | DECNAN);
6221 else if (merged & DECSNAN); /* sNaN -> qNaN */
7842 if (lhs->bits & DECSNAN)
7845 else if (rhs->bits & DECSNAN) {
7866 res->bits&=~DECSNAN; /* convert any sNaN to NaN, while */
[all …]
/qemu/target/ppc/
H A Ddfp_helper.c317 dfp->t.bits &= ~DECSNAN; in dfp_check_for_VXSNAN_and_convert_to_QNaN()