DECSNAN 477 src/decNumber/decNumber.c dn->bits=bits | DECSNAN; DECSNAN 1282 src/decNumber/decNumber.c if (rhs->bits&(DECNAN|DECSNAN)) { DECSNAN 3417 src/decNumber/decNumber.c if (dn->bits&DECSNAN) { // signalling NaN DECSNAN 3619 src/decNumber/decNumber.c if (SPECIALARGS & (DECSNAN | DECNAN)) // a NaN DECSNAN 4029 src/decNumber/decNumber.c if (SPECIALARGS & (DECSNAN | DECNAN)) { // one or two NaNs DECSNAN 4640 src/decNumber/decNumber.c if (SPECIALARGS & (DECSNAN | DECNAN)) { // one or two NaNs DECSNAN 5572 src/decNumber/decNumber.c if (SPECIALARGS & (DECSNAN | DECNAN)) DECSNAN 5753 src/decNumber/decNumber.c merged=(lhs->bits | rhs->bits) & (DECSNAN | DECNAN); DECSNAN 5776 src/decNumber/decNumber.c else if (merged & DECSNAN); // sNaN -> qNaN DECSNAN 7370 src/decNumber/decNumber.c if (lhs->bits & DECSNAN) DECSNAN 7373 src/decNumber/decNumber.c else if (rhs->bits & DECSNAN) { DECSNAN 7396 src/decNumber/decNumber.c res->bits&=~DECSNAN; // convert any sNaN to NaN, while DECSNAN 38 src/decNumber/decNumber.h # define DECSPECIAL (DECINF|DECNAN|DECSNAN) /* any special value */ DECSNAN 174 src/decNumber/decNumber.h # define decNumberIsNaN(dn) (((dn)->bits&(DECNAN|DECSNAN))!=0) DECSNAN 177 src/decNumber/decNumber.h # define decNumberIsSNaN(dn) (((dn)->bits&(DECSNAN))!=0)