HomeSort by: relevance | last modified time | path
    Searched refs:FE_DIVBYZERO (Results 1 - 25 of 30) sorted by relevancy

1 2

  /src/sys/arch/riscv/include/
fenv.h 17 #define FE_DIVBYZERO ((int)__BIT(3)) /* divide-by-zero */
21 (FE_INEXACT | FE_UNDERFLOW | FE_OVERFLOW | FE_DIVBYZERO | FE_INVALID)
ieeefp.h 26 #define FP_X_DZ FE_DIVBYZERO /* divide-by-zero exception */
  /src/sys/arch/sparc/include/
fenv.h 51 #define FE_DIVBYZERO 0x00000040 /* 0001000000 */
56 #define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_INEXACT | \
  /src/sys/arch/hppa/include/
fenv.h 41 #define FE_DIVBYZERO 0x08 /* divide-by-zero exception */
  /src/sys/arch/or1k/include/
ieeefp.h 26 #define FP_X_DZ FE_DIVBYZERO /* divide-by-zero exception */
fenv.h 22 #define FE_DIVBYZERO 0x100 /* divide-by-zero */
  /src/sys/arch/amd64/include/
fenv.h 55 #define FE_DIVBYZERO 0x04 /* 000000000100 */
65 (FE_DIVBYZERO | FE_INEXACT | FE_INVALID | FE_OVERFLOW | FE_UNDERFLOW)
  /src/sys/arch/i386/include/
fenv.h 55 #define FE_DIVBYZERO 0x04 /* 000000000100 */
64 #define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_DENORMAL | FE_INEXACT | \
  /src/sys/arch/ia64/include/
ieeefp.h 34 #define FP_X_DZ FE_DIVBYZERO /* divide-by-zero exception */
fenv.h 45 #define FE_DIVBYZERO 0x04
49 #define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_DENORMAL | FE_INEXACT | \
132 if (__excepts & FE_DIVBYZERO) {
  /src/sys/arch/x86/include/
ieeefp.h 17 #define FP_X_DZ FE_DIVBYZERO /* divide-by-zero exception */
  /src/sys/arch/sh3/include/
ieeefp.h 26 #define FP_X_DZ FE_DIVBYZERO /* divide-by-zero exception */
62 if (__fe & FE_DIVBYZERO)
81 __fe |= FE_DIVBYZERO;
fenv.h 47 #define FE_DIVBYZERO ((uint32_t)FPSCR_EXCEPTION_ZERODIV >> 5)
53 (FE_INEXACT | FE_DIVBYZERO | FE_UNDERFLOW | FE_OVERFLOW | FE_INVALID)
146 if (__excepts & FE_DIVBYZERO) /* 1.0 / 0 */
  /src/sys/arch/arm/include/
ieeefp.h 32 #define FP_X_DZ FE_DIVBYZERO /* divide-by-zero exception */
fenv.h 25 #define FE_DIVBYZERO 0x02 /* divide-by-zero exception */
  /src/sys/arch/mips/include/
ieeefp.h 30 #define FP_X_DZ __FPE(FE_DIVBYZERO) /* divide-by-zero exception */
fenv.h 41 #define FE_DIVBYZERO 0x0020
43 #define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_INEXACT | \
  /src/sys/arch/powerpc/include/
ieeefp.h 28 #define FP_X_DZ __FPE(FE_DIVBYZERO) /* divide-by-zero exception */
  /src/tests/lib/libm/
t_errhandling.c 56 C(0, FE_DIVBYZERO),
57 C(-0., FE_DIVBYZERO),
t_fenv.c 276 ATF_CHECK(fegetexcept() == (FE_INVALID|FE_DIVBYZERO|FE_OVERFLOW
285 ATF_CHECK_EQ_MSG(fegetexcept(), FE_DIVBYZERO,
286 "fegetexcept()=%d FE_DIVBYZERO=%d",
287 fegetexcept(), FE_DIVBYZERO);
335 feenableexcept(FE_DIVBYZERO);
359 (FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW)
  /src/lib/libm/softfloat/
feraiseexcept.c 65 else if (excepts & FE_DIVBYZERO)
  /src/sys/arch/alpha/include/
ieeefp.h 43 #define FP_X_DZ FE_DIVBYZERO /* divide-by-zero exception */
fenv.h 42 #define FE_DIVBYZERO 0x02
47 #define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_INEXACT | FE_INTOVF | \
  /src/sys/arch/m68k/include/
ieeefp.h 29 #define FP_X_DZ __FPE(FE_DIVBYZERO) /* divide-by-zero exception */
fenv.h 43 #define FE_DIVBYZERO FPSR_ADZ
49 (FE_INEXACT | FE_DIVBYZERO | FE_UNDERFLOW | FE_OVERFLOW | FE_INVALID)
165 if (__excepts & FE_DIVBYZERO) /* 1.0 / 0 */

Completed in 27 milliseconds

1 2