Searched refs:DEC_Underflow (Results 1 – 4 of 4) sorted by relevance
149 #define DEC_Underflow 0x00002000 macro167 #define DEC_Underflow 0x00000004 macro186 #define DEC_IEEE_854_Underflow (DEC_Underflow)
289 return decContextSetStatus(context, DEC_Underflow); in decContextSetStatusFromString()340 return decContextSetStatusQuiet(context, DEC_Underflow); in decContextSetStatusFromStringQuiet()375 if (status==DEC_Underflow ) return DEC_Condition_UN; in decContextStatusToString()
2364 if (status & (DEC_Overflow|DEC_Underflow)) { /* interesting? */ in decNumberPower()2380 if (status & (DEC_Overflow|DEC_Underflow)) { in decNumberPower()2386 status^=DEC_Overflow | DEC_Underflow | DEC_Subnormal; in decNumberPower()2388 status&=~(DEC_Underflow | DEC_Subnormal); /* [one or both] */ in decNumberPower()3252 if (status&DEC_Underflow) { in decNumberSquareRoot()3256 if (ae>=set->emin*2) status&=~(DEC_Subnormal|DEC_Underflow); in decNumberSquareRoot()3258 if (ae>=set->emin*2) status&=~DEC_Underflow; in decNumberSquareRoot()3261 if (!(status&DEC_Inexact)) status&=~DEC_Underflow; in decNumberSquareRoot()5615 if (*status & (DEC_Overflow|DEC_Underflow)) { /* interesting? */ in decExpOp()6110 *status&=~DEC_Underflow; /* suppress Underflow [754r] */[all …]
286 if (dfp->context.status & DEC_Underflow) { in dfp_check_for_UX()