Lines Matching refs:e
86 e_to_str(int e) in e_to_str() argument
88 if (e == 0) in e_to_str()
92 if (e == FE_DIVBYZERO) in e_to_str()
96 if (e == FE_OVERFLOW) in e_to_str()
100 if (e == FE_UNDERFLOW) in e_to_str()
104 if (e == FE_INEXACT) in e_to_str()
108 if (e == FE_INVALID) in e_to_str()
112 if (e == (FE_OVERFLOW|FE_INEXACT)) in e_to_str()
116 if (e == (FE_UNDERFLOW|FE_INEXACT)) in e_to_str()
122 while (e) { in e_to_str()
126 if (e & FE_DIVBYZERO) { in e_to_str()
128 e &= ~FE_DIVBYZERO; in e_to_str()
132 if (e & FE_OVERFLOW) { in e_to_str()
134 e &= ~FE_OVERFLOW; in e_to_str()
138 if (e & FE_UNDERFLOW) { in e_to_str()
140 e &= ~FE_UNDERFLOW; in e_to_str()
144 if (e & FE_INEXACT) { in e_to_str()
146 e &= ~FE_INEXACT; in e_to_str()
150 if (e & FE_INVALID) { in e_to_str()
152 e &= ~FE_INVALID; in e_to_str()
156 snprintf(tmp, sizeof(tmp), "?? 0x%x", e); in e_to_str()
158 e = 0; in e_to_str()