Symbol: FP_RN
lib/libc/arch/aarch64/softfloat/softfloat.h
94
#define float_round_nearest_even FP_RN
lib/libc/arch/alpha/gen/flt_rounds.c
51
| (1 << (FP_RN*2)) /* round to nearest */ \
lib/libc/arch/arm/hardfloat/fpgetround.c
59
__CTASSERT(__SHIFTOUT(VFP_FPSCR_RN, VFP_FPSCR_RMODE) == FP_RN);
lib/libc/arch/arm/hardfloat/fpsetround.c
59
__CTASSERT(__SHIFTOUT(VFP_FPSCR_RN, VFP_FPSCR_RMODE) == FP_RN);
lib/libc/arch/arm/softfloat/softfloat.h
88
#define float_round_nearest_even FP_RN
lib/libc/arch/m68k/softfloat/softfloat.h
92
#define float_round_nearest_even FP_RN
lib/libc/arch/mips/softfloat/softfloat.h
89
#define float_round_nearest_even FP_RN
lib/libc/arch/or1k/gen/flt_rounds.c
46
(1 << (FP_RN * 2)) /* round to nearest */
lib/libc/arch/or1k/softfloat/softfloat.h
87
#define float_round_nearest_even FP_RN
lib/libc/arch/powerpc/softfloat/softfloat.h
87
#define float_round_nearest_even FP_RN
lib/libc/arch/riscv/gen/flt_rounds.c
44
(1 << (FP_RN * 2)) /* round to nearest */
lib/libc/arch/sh3/softfloat/softfloat.h
87
#define float_round_nearest_even FP_RN
lib/libc/arch/sparc64/softfloat/softfloat.h
89
#define float_round_nearest_even FP_RN
regress/lib/libc/ieeefp/testfloat/include/softfloat.h
122
float_round_nearest_even = FP_RN,
sys/arch/alpha/include/fpu.h
76
#define FPCR_DEFAULT (__SHIFTIN(FP_RN, FPCR_DYN_RM) | \
sys/arch/sh3/include/ieeefp.h
107
return FP_RN;
sys/arch/sh3/include/ieeefp.h
116
case FP_RN:
sys/arch/sh3/include/ieeefp.h
99
return FP_RN;
sys/lib/libkern/softfloat.h
122
float_round_nearest_even = FP_RN,
tests/lib/libc/gen/t_fpsetround.c
129
ATF_CHECK_EQ(r = fpgetround(), FP_RN);
tests/lib/libc/gen/t_fpsetround.c
130
if (FP_RN != r)
tests/lib/libc/gen/t_fpsetround.c
131
fprintf(stderr, "default expected=%s got=%s\n", getname(FP_RN),
tests/lib/libc/gen/t_fpsetround.c
183
ATF_CHECK_EQ_MSG((r = fpsetround(FP_RN)), FP_RN,
tests/lib/libc/gen/t_fpsetround.c
184
"r=%d FP_RN=%d", r, FP_RN);
tests/lib/libc/gen/t_fpsetround.c
189
ATF_CHECK_EQ_MSG((r = fpsetround(FP_RN)), FP_RN,
tests/lib/libc/gen/t_fpsetround.c
190
"r=%d FP_RN=%d", r, FP_RN);
tests/lib/libc/gen/t_fpsetround.c
65
{ "RN", FP_RN, 1 },
tests/lib/libm/t_fenv.c
198
fpsetround(FP_RN);
tests/lib/libm/t_fenv.c
243
ATF_CHECK_EQ_MSG(fpgetround(), FP_RN,
tests/lib/libm/t_fenv.c
245
(int)fpgetround(), (int)FP_RN);