DECSNAN 492 src/decNumber/decNumber.c dn->bits=bits | DECSNAN; DECSNAN 1298 src/decNumber/decNumber.c if (rhs->bits&(DECNAN|DECSNAN)) { DECSNAN 3434 src/decNumber/decNumber.c if (dn->bits&DECSNAN) { // signalling NaN DECSNAN 3636 src/decNumber/decNumber.c if (SPECIALARGS & (DECSNAN | DECNAN)) // a NaN DECSNAN 4047 src/decNumber/decNumber.c if (SPECIALARGS & (DECSNAN | DECNAN)) { // one or two NaNs DECSNAN 4660 src/decNumber/decNumber.c if (SPECIALARGS & (DECSNAN | DECNAN)) { // one or two NaNs DECSNAN 5592 src/decNumber/decNumber.c if (SPECIALARGS & (DECSNAN | DECNAN)) DECSNAN 5773 src/decNumber/decNumber.c merged=(lhs->bits | rhs->bits) & (DECSNAN | DECNAN); DECSNAN 5796 src/decNumber/decNumber.c else if (merged & DECSNAN); // sNaN -> qNaN DECSNAN 7392 src/decNumber/decNumber.c if (lhs->bits & DECSNAN) DECSNAN 7395 src/decNumber/decNumber.c else if (rhs->bits & DECSNAN) { DECSNAN 7418 src/decNumber/decNumber.c res->bits&=~DECSNAN; // convert any sNaN to NaN, while DECSNAN 39 src/decNumber/decNumber.h # define DECSPECIAL (DECINF|DECNAN|DECSNAN) /* any special value */ DECSNAN 175 src/decNumber/decNumber.h # define decNumberIsNaN(dn) (((dn)->bits&(DECNAN|DECSNAN))!=0) DECSNAN 178 src/decNumber/decNumber.h # define decNumberIsSNaN(dn) (((dn)->bits&(DECSNAN))!=0)