Searched refs:DEC_Underflow (Results 1 – 16 of 16) sorted by relevance
151 #define DEC_Underflow 0x00002000 macro169 #define DEC_Underflow 0x00000004 macro188 #define DEC_IEEE_754_Underflow (DEC_Underflow)
274 return decContextSetStatus(context, DEC_Underflow); in decContextSetStatusFromString()325 return decContextSetStatusQuiet(context, DEC_Underflow); in decContextSetStatusFromStringQuiet()360 if (status==DEC_Underflow ) return DEC_Condition_UN; in decContextStatusToString()
2202 if (status & (DEC_Overflow|DEC_Underflow)) { /* interesting? */ in decNumberPower()2218 if (status & (DEC_Overflow|DEC_Underflow)) { in decNumberPower()2224 status^=DEC_Overflow | DEC_Underflow | DEC_Subnormal; in decNumberPower()2226 status&=~(DEC_Underflow | DEC_Subnormal); /* [one or both] */ in decNumberPower()3099 if (status&DEC_Underflow) { in decNumberSquareRoot()3103 if (ae>=set->emin*2) status&=~(DEC_Subnormal|DEC_Underflow); in decNumberSquareRoot()3105 if (ae>=set->emin*2) status&=~DEC_Underflow; in decNumberSquareRoot()3108 if (!(status&DEC_Inexact)) status&=~DEC_Underflow; in decNumberSquareRoot()5463 if (*status & (DEC_Overflow|DEC_Underflow)) { /* interesting? */ in decExpOp()5957 *status&=~DEC_Underflow; /* suppress Underflow [as per 754] */[all …]
336 set->status|=DEC_Underflow; in decFinalize()