Searched refs:DEC_Underflow (Results 1 – 4 of 4) sorted by relevance
150 #define DEC_Underflow 0x00002000 macro168 #define DEC_Underflow 0x00000004 macro187 #define DEC_IEEE_854_Underflow (DEC_Underflow)
290 return decContextSetStatus(context, DEC_Underflow); in decContextSetStatusFromString()341 return decContextSetStatusQuiet(context, DEC_Underflow); in decContextSetStatusFromStringQuiet()376 if (status==DEC_Underflow ) return DEC_Condition_UN; in decContextStatusToString()
2365 if (status & (DEC_Overflow|DEC_Underflow)) { /* interesting? */ in decNumberPower()2381 if (status & (DEC_Overflow|DEC_Underflow)) { in decNumberPower()2387 status^=DEC_Overflow | DEC_Underflow | DEC_Subnormal; in decNumberPower()2389 status&=~(DEC_Underflow | DEC_Subnormal); /* [one or both] */ in decNumberPower()3253 if (status&DEC_Underflow) { in decNumberSquareRoot()3257 if (ae>=set->emin*2) status&=~(DEC_Subnormal|DEC_Underflow); in decNumberSquareRoot()3259 if (ae>=set->emin*2) status&=~DEC_Underflow; in decNumberSquareRoot()3262 if (!(status&DEC_Inexact)) status&=~DEC_Underflow; in decNumberSquareRoot()5616 if (*status & (DEC_Overflow|DEC_Underflow)) { /* interesting? */ in decExpOp()6111 *status&=~DEC_Underflow; /* suppress Underflow [754r] */[all …]
286 if (dfp->context.status & DEC_Underflow) { in dfp_check_for_UX()