DEC_Underflow 262 src/decNumber/decContext.c return decContextSetStatus(context, DEC_Underflow); DEC_Underflow 313 src/decNumber/decContext.c return decContextSetStatusQuiet(context, DEC_Underflow); DEC_Underflow 348 src/decNumber/decContext.c if (status==DEC_Underflow ) return DEC_Condition_UN; DEC_Underflow 181 src/decNumber/decContext.h # define DEC_IEEE_754_Underflow (DEC_Underflow) DEC_Underflow 2050 src/decNumber/decNumber.c if (status & (DEC_Overflow|DEC_Underflow)) { // interesting? DEC_Underflow 2066 src/decNumber/decNumber.c if (status & (DEC_Overflow|DEC_Underflow)) { DEC_Underflow 2072 src/decNumber/decNumber.c status^=DEC_Overflow | DEC_Underflow | DEC_Subnormal; DEC_Underflow 2074 src/decNumber/decNumber.c status&=~(DEC_Underflow | DEC_Subnormal); // [one or both] DEC_Underflow 2925 src/decNumber/decNumber.c if (status&DEC_Underflow) { DEC_Underflow 2929 src/decNumber/decNumber.c if (ae>=set->emin*2) status&=~(DEC_Subnormal|DEC_Underflow); DEC_Underflow 2931 src/decNumber/decNumber.c if (ae>=set->emin*2) status&=~DEC_Underflow; DEC_Underflow 2934 src/decNumber/decNumber.c if (!(status&DEC_Inexact)) status&=~DEC_Underflow; DEC_Underflow 5183 src/decNumber/decNumber.c if (*status & (DEC_Overflow|DEC_Underflow)) { // interesting? DEC_Underflow 5666 src/decNumber/decNumber.c *status&=~DEC_Underflow; // suppress Underflow [as per 754] DEC_Underflow 6893 src/decNumber/decNumber.c *status|=DEC_Underflow | DEC_Subnormal | DEC_Inexact | DEC_Rounded; DEC_Underflow 7124 src/decNumber/decNumber.c *status|=DEC_Underflow | DEC_Subnormal | DEC_Inexact | DEC_Rounded; DEC_Underflow 7148 src/decNumber/decNumber.c if (*status&DEC_Inexact) *status|=DEC_Underflow; DEC_Underflow 7163 src/decNumber/decNumber.c if (*status&DEC_Inexact) *status|=DEC_Underflow;