Symbol: FE_TONEAREST
lib/libc/gdtoa/gdtoaimp.h
206
(__libc_fegetround_ref ? __libc_fegetround_ref() : FE_TONEAREST)
lib/libc/gdtoa/test/getround.c
40
static int fe_conv[4] = {FE_TOWARDZERO, FE_TONEAREST, FE_UPWARD, FE_DOWNWARD };
lib/libm/arch/hppa/fenv.c
60
#define FE_ROUND_MASK (FE_TONEAREST | FE_DOWNWARD | \
lib/libm/src/e_sqrtl.c
158
if (r == FE_TONEAREST) {
lib/libm/src/s_fma.c
229
case FE_TONEAREST:
lib/libm/src/s_fma.c
253
fesetround(FE_TONEAREST);
lib/libm/src/s_fma.c
280
if (oround != FE_TONEAREST) {
lib/libm/src/s_fmaf.c
63
fegetround() != FE_TONEAREST) /* not round-to-nearest */
lib/libm/src/s_fmaf.c
73
fesetround(FE_TONEAREST);
lib/libm/src/s_fmal.c
214
case FE_TONEAREST:
lib/libm/src/s_fmal.c
238
fesetround(FE_TONEAREST);
lib/libm/src/s_fmal.c
265
if (oround != FE_TONEAREST) {
sys/arch/alpha/include/fenv.h
55
#define _ROUND_MASK (FE_TONEAREST | FE_DOWNWARD | \
sys/arch/alpha/include/ieeefp.h
56
FP_RN = FE_TONEAREST, /* round to nearest representable number */
sys/arch/arm/include/ieeefp.h
40
FP_RN=FE_TONEAREST, /* round to nearest representable number */
sys/arch/ia64/include/fenv.h
57
#define _ROUND_MASK (FE_TONEAREST | FE_DOWNWARD | \
sys/arch/ia64/include/ieeefp.h
47
FP_RN = FE_TONEAREST, /* round to nearest representable number */
sys/arch/m68k/include/fenv.h
58
(FE_TONEAREST | FE_TOWARDZERO | FE_DOWNWARD | FE_UPWARD)
sys/arch/m68k/include/ieeefp.h
35
FP_RN=__FPR(FE_TONEAREST), /* round to nearest representable number */
sys/arch/mips/include/fenv.h
51
#define _ROUND_MASK (FE_TONEAREST | FE_DOWNWARD | \
sys/arch/mips/include/ieeefp.h
34
FP_RN=FE_TONEAREST, /* round to nearest representable number */
sys/arch/or1k/include/ieeefp.h
34
FP_RN=FE_TONEAREST, /* round to nearest representable number */
sys/arch/powerpc/include/fenv.h
71
#define _ROUND_MASK (FE_TONEAREST | FE_DOWNWARD | \
sys/arch/powerpc/include/ieeefp.h
34
FP_RN=__FPR(FE_TONEAREST), /* round to nearest representable number */
sys/arch/riscv/include/ieeefp.h
34
FP_RN=FE_TONEAREST, /* round to nearest representable number */
sys/arch/sh3/include/fenv.h
63
(FE_TONEAREST | FE_TOWARDZERO)
sys/arch/sh3/include/ieeefp.h
117
return FE_TONEAREST;
sys/arch/sh3/include/ieeefp.h
125
return FE_TONEAREST;
sys/arch/sh3/include/ieeefp.h
32
FP_RN=FE_TONEAREST, /* round to nearest representable number */
sys/arch/sh3/include/ieeefp.h
98
case FE_TONEAREST:
sys/arch/sparc/include/fenv.h
69
#define _ROUND_MASK (FE_TONEAREST | FE_DOWNWARD | \
sys/arch/x86/include/ieeefp.h
23
FP_RN=FE_TONEAREST, /* round to nearest representable num */
tests/lib/libm/t_fe_round.c
327
{ FE_TONEAREST, 0x2.00000000000008p+52L, 0x20000000000000 },
tests/lib/libm/t_fe_round.c
331
{ FE_TONEAREST, 0x2.00000000000018p+52L, 0x20000000000002 },
tests/lib/libm/t_fe_round.c
36
case FE_TONEAREST:
tests/lib/libm/t_fe_round.c
82
{ FE_TONEAREST, -INT-0.0625, -INT},
tests/lib/libm/t_fe_round.c
83
{ FE_TONEAREST, +INT-0.0625, INT},
tests/lib/libm/t_fe_round.c
84
{ FE_TONEAREST, -INT+0.0625, -INT},
tests/lib/libm/t_fe_round.c
85
{ FE_TONEAREST, +INT+0.0625, INT},
tests/lib/libm/t_fe_round.c
86
{ FE_TONEAREST, -INT-0.53125, -INT-1},
tests/lib/libm/t_fe_round.c
87
{ FE_TONEAREST, +INT-0.53125, INT-1},
tests/lib/libm/t_fe_round.c
88
{ FE_TONEAREST, -INT+0.53125, -INT+1},
tests/lib/libm/t_fe_round.c
89
{ FE_TONEAREST, +INT+0.53125, INT+1},
tests/lib/libm/t_fe_round.c
90
{ FE_TONEAREST, +0., 0},
tests/lib/libm/t_fe_round.c
91
{ FE_TONEAREST, -0., 0},
tests/lib/libm/t_fenv.c
100
case FE_TONEAREST:
tests/lib/libm/t_fenv.c
143
case FE_TONEAREST:
tests/lib/libm/t_fenv.c
182
checkrounding(FE_TONEAREST, "FE_TONEAREST");
tests/lib/libm/t_fenv.c
199
ATF_CHECK_EQ_MSG(fegetround(), FE_TONEAREST,
tests/lib/libm/t_fenv.c
201
fegetround(), FE_TONEAREST);
tests/lib/libm/t_fenv.c
203
checkrounding(FE_TONEAREST, "FE_TONEAREST");
tests/lib/libm/t_fenv.c
226
checkrounding(FE_TONEAREST, "FE_TONEAREST");
tests/lib/libm/t_fenv.c
242
fesetround(FE_TONEAREST);
tests/lib/libm/t_fenv.c
247
checkrounding(FE_TONEAREST, "FE_TONEAREST");