Home
last modified time | relevance | path

Searched refs:FE_TOWARDZERO (Results 1 – 17 of 17) sorted by relevance

/bionic/tests/
Dfenv_test.cpp45 fesetround(FE_TOWARDZERO); in TEST()
46 ASSERT_EQ(FE_TOWARDZERO, fegetround()); in TEST()
Dmath_test.cpp784 fesetround(FE_TOWARDZERO); // lrint/lrintf/lrintl obey the rounding mode. in TEST()
793 fesetround(FE_TOWARDZERO); // llrint/llrintf/llrintl obey the rounding mode. in TEST()
821 fesetround(FE_TOWARDZERO); // rint/rintf obey the rounding mode. in TEST()
848 fesetround(FE_TOWARDZERO); // nearbyint/nearbyintf/nearbyintl obey the rounding mode. in TEST()
959 fesetround(FE_TOWARDZERO); // round ignores the rounding mode and always rounds away from zero. in TEST()
970 fesetround(FE_TOWARDZERO); // roundf ignores the rounding mode and always rounds away from zero. in TEST()
981 fesetround(FE_TOWARDZERO); // roundl ignores the rounding mode and always rounds away from zero. in TEST()
/bionic/libc/arch-mips/include/machine/
Dfenv.h92 #define FE_TOWARDZERO 0x0001 macro
/bionic/libc/arch-arm/include/machine/
Dfenv.h59 #define FE_TOWARDZERO 0x3 macro
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
Dgdtoa_fltrnds.h8 case FE_TOWARDZERO: Rounding = 0; break;
Ddtoa.c140 case FE_TOWARDZERO: Rounding = 0; break;
Dstrtod.c136 case FE_TOWARDZERO: Rounding = 0; break;
/bionic/libc/arch-arm64/include/machine/
Dfenv.h98 #define FE_TOWARDZERO 0x3 macro
/bionic/libc/arch-x86/include/machine/
Dfenv.h65 #define FE_TOWARDZERO 0x0c00 macro
/bionic/libc/arch-x86_64/include/machine/
Dfenv.h64 #define FE_TOWARDZERO 0xc00 macro
/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_fmaf.c62 fesetround(FE_TOWARDZERO); in fmaf()
De_sqrtl.c137 fesetround(FE_TOWARDZERO); /* Set to round-toward-zero. */ in sqrtl()
Ds_fmal.c206 case FE_TOWARDZERO: in fmal()
Ds_fma.c218 case FE_TOWARDZERO: in fma()
/bionic/libm/arm64/
Dfenv.c123 return ((fpcr >> FPCR_RMODE_SHIFT) & FE_TOWARDZERO); in fegetround()
129 round &= FE_TOWARDZERO; in fesetround()
131 new_fpcr = fpcr & ~(FE_TOWARDZERO << FPCR_RMODE_SHIFT); in fesetround()
/bionic/libm/amd64/
Dfenv.c46 #define X87_ROUND_MASK (FE_TONEAREST | FE_DOWNWARD | FE_UPWARD | FE_TOWARDZERO)
/bionic/libm/i387/
Dfenv.c33 #define ROUND_MASK (FE_TONEAREST | FE_DOWNWARD | FE_UPWARD | FE_TOWARDZERO)