HomeSort by: relevance | last modified time | path
    Searched defs:FP_X_DZ (Results 1 - 13 of 13) sorted by relevancy

  /src/sys/arch/arm/include/
ieeefp.h 32 #define FP_X_DZ FE_DIVBYZERO /* divide-by-zero exception */
  /src/sys/arch/hppa/include/
ieeefp.h 19 #define FP_X_DZ 0x08 /* divide-by-zero exception */
  /src/sys/arch/ia64/include/
ieeefp.h 34 #define FP_X_DZ FE_DIVBYZERO /* divide-by-zero exception */
  /src/sys/arch/mips/include/
ieeefp.h 30 #define FP_X_DZ __FPE(FE_DIVBYZERO) /* divide-by-zero exception */
  /src/sys/arch/or1k/include/
ieeefp.h 26 #define FP_X_DZ FE_DIVBYZERO /* divide-by-zero exception */
  /src/sys/arch/powerpc/include/
ieeefp.h 28 #define FP_X_DZ __FPE(FE_DIVBYZERO) /* divide-by-zero exception */
  /src/sys/arch/riscv/include/
ieeefp.h 26 #define FP_X_DZ FE_DIVBYZERO /* divide-by-zero exception */
  /src/sys/arch/sparc/include/
ieeefp.h 18 #define FP_X_DZ 0x02 /* divide-by-zero exception */
  /src/sys/arch/alpha/include/
ieeefp.h 30 #define FP_AA_FLAGS (FP_X_INV | FP_X_DZ | FP_X_OFL | FP_X_UFL | FP_X_IMP)
43 #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 */
43 #define FP_X_DZ 0x04 /* divide-by-zero exception */
63 __fp |= FP_X_DZ;
80 if (__fp & FP_X_DZ)
  /src/sys/arch/x86/include/
ieeefp.h 17 #define FP_X_DZ FE_DIVBYZERO /* divide-by-zero exception */
  /src/sys/arch/m68k/include/
ieeefp.h 29 #define FP_X_DZ __FPE(FE_DIVBYZERO) /* divide-by-zero exception */
  /src/tests/lib/libm/
t_fenv.c 275 fpsetmask(FP_X_INV|FP_X_DZ|FP_X_OFL|FP_X_UFL|FP_X_IMP);
284 fpsetmask(FP_X_DZ);
336 ATF_CHECK_EQ_MSG(fpgetmask(), FP_X_DZ,
337 "fpgetmask()=%d FP_X_DZ=%d",
338 (int)fpgetmask(), (int)FP_X_DZ);

Completed in 19 milliseconds