Searched refs:DEC_Underflow (Results 1 - 3 of 3) sorted by relevance

/external/icu4c/i18n/
H A DdecContext.h156 #define DEC_Underflow 0x00002000 macro
174 #define DEC_Underflow 0x00000004 macro
193 #define DEC_IEEE_754_Underflow (DEC_Underflow)
H A DdecContext.c261 return uprv_decContextSetStatus(context, DEC_Underflow);
312 return uprv_decContextSetStatusQuiet(context, DEC_Underflow);
347 if (status==DEC_Underflow ) return DEC_Condition_UN;
H A DdecNumber.c2215 if (status & (DEC_Overflow|DEC_Underflow)) { /* interesting? */
2231 if (status & (DEC_Overflow|DEC_Underflow)) {
2237 status^=DEC_Overflow | DEC_Underflow | DEC_Subnormal;
2239 status&=~(DEC_Underflow | DEC_Subnormal); /* [one or both] */
3116 if (status&DEC_Underflow) {
3120 if (ae>=set->emin*2) status&=~(DEC_Subnormal|DEC_Underflow);
3122 if (ae>=set->emin*2) status&=~DEC_Underflow;
3125 if (!(status&DEC_Inexact)) status&=~DEC_Underflow;
5483 if (*status & (DEC_Overflow|DEC_Underflow)) { /* interesting? */
5984 *status&=~DEC_Underflow; /* suppres
[all...]

Completed in 32 milliseconds