Home
last modified time | relevance | path

Searched refs:DEC_Underflow (Results 1 – 4 of 4) sorted by relevance

/openbmc/qemu/include/libdecnumber/
H A DdecContext.h149 #define DEC_Underflow 0x00002000 macro
167 #define DEC_Underflow 0x00000004 macro
186 #define DEC_IEEE_854_Underflow (DEC_Underflow)
/openbmc/qemu/libdecnumber/
H A DdecContext.c289 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()
H A DdecNumber.c2364 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 …]
/openbmc/qemu/target/ppc/
H A Ddfp_helper.c286 if (dfp->context.status & DEC_Underflow) { in dfp_check_for_UX()