Home
last modified time | relevance | path

Searched refs:FE_UNDERFLOW (Results 1 – 25 of 58) sorted by relevance

123

/netbsd-src/external/gpl3/gcc/dist/libgfortran/config/
H A Dfpu-glibc.h73 #ifdef FE_UNDERFLOW in set_fpu_trap_exceptions()
75 mode_set |= FE_UNDERFLOW; in set_fpu_trap_exceptions()
77 mode_clr |= FE_UNDERFLOW; in set_fpu_trap_exceptions()
117 #ifdef FE_UNDERFLOW in get_fpu_trap_exceptions()
118 if (exceptions & FE_UNDERFLOW) res |= GFC_FPE_UNDERFLOW; in get_fpu_trap_exceptions()
162 #ifndef FE_UNDERFLOW in set_fpu()
201 #ifdef FE_UNDERFLOW in get_fpu_except_flags()
202 if (set_excepts & FE_UNDERFLOW) in get_fpu_except_flags()
246 #ifdef FE_UNDERFLOW in set_fpu_except_flags()
248 exc_set |= FE_UNDERFLOW; in set_fpu_except_flags()
[all …]
H A Dfpu-aarch64.h41 #define FE_UNDERFLOW 8 macro
44 #define FE_ALL_EXCEPT (FE_INVALID | FE_DIVBYZERO | FE_OVERFLOW | FE_UNDERFLOW | FE_INEXACT)
86 if (exceptions & FE_UNDERFLOW) res |= GFC_FPE_UNDERFLOW; in get_fpu_trap_exceptions()
115 mode_set |= FE_UNDERFLOW; in set_fpu_trap_exceptions()
117 mode_clr |= FE_UNDERFLOW; in set_fpu_trap_exceptions()
174 if (fpsr & FE_UNDERFLOW) in get_fpu_except_flags()
205 exc_set |= FE_UNDERFLOW; in set_fpu_except_flags()
207 exc_clr |= FE_UNDERFLOW; in set_fpu_except_flags()
/netbsd-src/external/gpl3/gcc.old/dist/libgfortran/config/
H A Dfpu-glibc.h73 #ifdef FE_UNDERFLOW in set_fpu_trap_exceptions()
75 mode_set |= FE_UNDERFLOW; in set_fpu_trap_exceptions()
77 mode_clr |= FE_UNDERFLOW; in set_fpu_trap_exceptions()
117 #ifdef FE_UNDERFLOW in get_fpu_trap_exceptions()
118 if (exceptions & FE_UNDERFLOW) res |= GFC_FPE_UNDERFLOW; in get_fpu_trap_exceptions()
162 #ifndef FE_UNDERFLOW in set_fpu()
201 #ifdef FE_UNDERFLOW in get_fpu_except_flags()
202 if (set_excepts & FE_UNDERFLOW) in get_fpu_except_flags()
246 #ifdef FE_UNDERFLOW in set_fpu_except_flags()
248 exc_set |= FE_UNDERFLOW; in set_fpu_except_flags()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/stdc/
H A Dfenv.d519 FE_UNDERFLOW = 2, ///
546 FE_UNDERFLOW = 0x04,
568 FE_UNDERFLOW = 0x10,
589 FE_UNDERFLOW = 0x10, ///
612 FE_UNDERFLOW = 0x10, ///
634 FE_UNDERFLOW = 8, ///
654 FE_UNDERFLOW = 0x02, ///
676 FE_UNDERFLOW = 0x08, ///
699 FE_UNDERFLOW = 0x8000000, ///
730 FE_UNDERFLOW = 0x02, ///
[all …]
/netbsd-src/sys/arch/sh3/include/
H A Dieeefp.h28 #define FP_X_UFL FE_UNDERFLOW /* underflow exception */
70 if (__fe & FE_UNDERFLOW) in __FPE()
89 __fe |= FE_UNDERFLOW; in __FEE()
H A Dfenv.h48 #define FE_UNDERFLOW ((uint32_t)FPSCR_EXCEPTION_UNDERFLOW >> 5)
53 (FE_INEXACT | FE_DIVBYZERO | FE_UNDERFLOW | FE_OVERFLOW | FE_INVALID)
152 if (__excepts & FE_UNDERFLOW) /* MIN / 10.0 */ in feraiseexcept()
46 #define FE_UNDERFLOW global() macro
/netbsd-src/tests/lib/libm/
H A Dt_fenv.c277 |FE_UNDERFLOW|FE_INEXACT)); in ATF_TC_BODY()
295 ATF_CHECK_EQ_MSG(fegetexcept(), FE_UNDERFLOW, in ATF_TC_BODY()
297 fegetexcept(), FE_UNDERFLOW); in ATF_TC_BODY()
323 feenableexcept(FE_UNDERFLOW); in ATF_TC_BODY()
359 (FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW)
/netbsd-src/sys/arch/riscv/include/
H A Dfenv.h15 #define FE_UNDERFLOW ((int)__BIT(1)) /* Result underflowed */ macro
21 (FE_INEXACT | FE_UNDERFLOW | FE_OVERFLOW | FE_DIVBYZERO | FE_INVALID)
H A Dieeefp.h28 #define FP_X_UFL FE_UNDERFLOW /* underflow exception */
/netbsd-src/sys/arch/sparc/include/
H A Dfenv.h52 #define FE_UNDERFLOW 0x00000080 /* 0010000000 */ macro
57 FE_INVALID | FE_OVERFLOW | FE_UNDERFLOW)
/netbsd-src/sys/arch/amd64/include/
H A Dfenv.h57 #define FE_UNDERFLOW 0x10 /* 000000010000 */ macro
65 (FE_DIVBYZERO | FE_INEXACT | FE_INVALID | FE_OVERFLOW | FE_UNDERFLOW)
/netbsd-src/sys/arch/ia64/include/
H A Dfenv.h47 #define FE_UNDERFLOW 0x10
50 FE_INVALID | FE_OVERFLOW | FE_UNDERFLOW)
140 if (__excepts & FE_UNDERFLOW) { in feraiseexcept()
46 #define FE_UNDERFLOW global() macro
H A Dieeefp.h36 #define FP_X_UFL FE_UNDERFLOW /* underflow exception */
/netbsd-src/sys/arch/i386/include/
H A Dfenv.h57 #define FE_UNDERFLOW 0x10 /* 000000010000 */ macro
65 FE_INVALID | FE_OVERFLOW | FE_UNDERFLOW)
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/libbid/
H A Dbid_decimal_globals.c61 flags |= mask & FE_UNDERFLOW; in __dfp_test_except()
78 if ((mask & FE_UNDERFLOW) != 0) in __dfp_raise_except()
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/libbid/
H A Dbid_decimal_globals.c61 flags |= mask & FE_UNDERFLOW; in __dfp_test_except()
78 if ((mask & FE_UNDERFLOW) != 0) in __dfp_raise_except()
/netbsd-src/sys/arch/m68k/include/
H A Dfenv.h44 #define FE_UNDERFLOW FPSR_AUNFL
49 (FE_INEXACT | FE_DIVBYZERO | FE_UNDERFLOW | FE_OVERFLOW | FE_INVALID)
171 if (__excepts & FE_UNDERFLOW) /* e ^ -MAX */ in feraiseexcept()
42 #define FE_UNDERFLOW global() macro
/netbsd-src/sys/arch/powerpc/include/
H A Dfenv.h40 #define FE_UNDERFLOW 0x08000000
64 FE_ALL_INVALID | FE_OVERFLOW | FE_UNDERFLOW)
93 FE_OVERFLOW | FE_UNDERFLOW) >> _FPUSW_SHIFT)
39 #define FE_UNDERFLOW global() macro
/netbsd-src/sys/arch/alpha/include/
H A Dfenv.h44 #define FE_UNDERFLOW 0x08
48 FE_INVALID | FE_OVERFLOW | FE_UNDERFLOW)
43 #define FE_UNDERFLOW global() macro
/netbsd-src/sys/arch/mips/include/
H A Dfenv.h39 #define FE_UNDERFLOW 0x0008
44 FE_INVALID | FE_OVERFLOW | FE_UNDERFLOW)
38 #define FE_UNDERFLOW global() macro
/netbsd-src/sys/arch/hppa/include/
H A Dfenv.h39 #define FE_UNDERFLOW 0x02 /* underflow exception */ macro
/netbsd-src/sys/arch/or1k/include/
H A Dfenv.h15 #define FE_UNDERFLOW 0x002 /* Result underflowed */ macro
H A Dieeefp.h28 #define FP_X_UFL FE_UNDERFLOW /* underflow exception */
/netbsd-src/sys/arch/x86/include/
H A Dieeefp.h19 #define FP_X_UFL FE_UNDERFLOW /* underflow exception */
/netbsd-src/sys/arch/arm/include/
H A Dieeefp.h34 #define FP_X_UFL FE_UNDERFLOW /* underflow exception */

123