DEC_Underflow 264 src/decNumber/decContext.c return decContextSetStatus(context, DEC_Underflow); DEC_Underflow 315 src/decNumber/decContext.c return decContextSetStatusQuiet(context, DEC_Underflow); DEC_Underflow 350 src/decNumber/decContext.c if (status==DEC_Underflow ) return DEC_Condition_UN; DEC_Underflow 183 src/decNumber/decContext.h # define DEC_IEEE_754_Underflow (DEC_Underflow) DEC_Underflow 2066 src/decNumber/decNumber.c if (status & (DEC_Overflow|DEC_Underflow)) { // interesting? DEC_Underflow 2082 src/decNumber/decNumber.c if (status & (DEC_Overflow|DEC_Underflow)) { DEC_Underflow 2088 src/decNumber/decNumber.c status^=DEC_Overflow | DEC_Underflow | DEC_Subnormal; DEC_Underflow 2090 src/decNumber/decNumber.c status&=~(DEC_Underflow | DEC_Subnormal); // [one or both] DEC_Underflow 2941 src/decNumber/decNumber.c if (status&DEC_Underflow) { DEC_Underflow 2945 src/decNumber/decNumber.c if (ae>=set->emin*2) status&=~(DEC_Subnormal|DEC_Underflow); DEC_Underflow 2947 src/decNumber/decNumber.c if (ae>=set->emin*2) status&=~DEC_Underflow; DEC_Underflow 2950 src/decNumber/decNumber.c if (!(status&DEC_Inexact)) status&=~DEC_Underflow; DEC_Underflow 5203 src/decNumber/decNumber.c if (*status & (DEC_Overflow|DEC_Underflow)) { // interesting? DEC_Underflow 5686 src/decNumber/decNumber.c *status&=~DEC_Underflow; // suppress Underflow [as per 754] DEC_Underflow 6915 src/decNumber/decNumber.c *status|=DEC_Underflow | DEC_Subnormal | DEC_Inexact | DEC_Rounded; DEC_Underflow 7146 src/decNumber/decNumber.c *status|=DEC_Underflow | DEC_Subnormal | DEC_Inexact | DEC_Rounded; DEC_Underflow 7170 src/decNumber/decNumber.c if (*status&DEC_Inexact) *status|=DEC_Underflow; DEC_Underflow 7185 src/decNumber/decNumber.c if (*status&DEC_Inexact) *status|=DEC_Underflow;