Home
last modified time | relevance | path

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

/qemu/include/libdecnumber/
H A DdecContext.h150 #define DEC_Underflow 0x00002000 macro
168 #define DEC_Underflow 0x00000004 macro
187 #define DEC_IEEE_854_Underflow (DEC_Underflow)
/qemu/libdecnumber/
H A DdecContext.c290 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()
H A DdecNumber.c2365 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()
6111 *status&=~DEC_Underflow; /* suppress Underflow [754r] */
7615 if (*status&DEC_Inexact) *status|=DEC_Underflow;
[all …]
/qemu/target/ppc/
H A Ddfp_helper.c286 if (dfp->context.status & DEC_Underflow) { in dfp_check_for_UX()