| /freebsd/lib/msun/src/ |
| H A D | s_nearbyint.c | 49 #define DECL(type, fn, rint) \ argument 57 ret = rint(x); \ 62 DECL(double, nearbyint, rint)
|
| H A D | s_rint.c | 34 rint(double x) in rint() function 87 __weak_reference(rint, rintl);
|
| H A D | s_llrint.c | 2 #define roundit rint
|
| H A D | s_lrint.c | 34 #define roundit rint
|
| H A D | e_scalb.c | 38 if (rint(fn)!=fn) return (fn-fn)/(fn-fn); in scalb()
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/redacted_send/ |
| H A D | redacted_incrementals.ksh | 69 compare_files $POOL/int $POOL2/rint "f1" "$RANGE0" 70 compare_files $POOL/int $POOL2/rint "f2" "$RANGE15" 71 compare_files $POOL/int $POOL2/rint "d1/f1" "$RANGE16" 72 log_must mount_redacted -f $POOL2/rint 151 compare_files $sendfs $POOL2/rint "f2" "$RANGE12"
|
| /freebsd/lib/msun/i387/ |
| H A D | s_rint.S | 37 ENTRY(rint) 41 END(rint)
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__math/ |
| H A D | rounding_functions.h | 189 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI float rint(float __x) _NOEXCEPT { return __builtin_r… in rint() function 192 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI double rint(double __x) _NOEXCEPT { in rint() function 196 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI long double rint(long double __x) _NOEXCEPT { in rint() function 201 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI double rint(_A1 __x) _NOEXCEPT { in rint() function
|
| /freebsd/contrib/llvm-project/libcxx/include/__math/ |
| H A D | rounding_functions.h | 189 [[__nodiscard__]] inline _LIBCPP_HIDE_FROM_ABI float rint(float __x) _NOEXCEPT { return __builtin_r… in rint() function 192 [[__nodiscard__]] _LIBCPP_HIDE_FROM_ABI double rint(double __x) _NOEXCEPT { in rint() function 196 [[__nodiscard__]] inline _LIBCPP_HIDE_FROM_ABI long double rint(long double __x) _NOEXCEPT { in rint() function 201 [[__nodiscard__]] inline _LIBCPP_HIDE_FROM_ABI double rint(_A1 __x) _NOEXCEPT { in rint() function
|
| /freebsd/sys/arm/allwinner/ |
| H A D | aw_mmc.c | 944 uint32_t idst, imask, rint; local 948 rint = AW_MMC_READ_4(sc, AW_MMC_RISR); 951 if (idst == 0 && imask == 0 && rint == 0) { 957 idst, imask, rint); 966 rint); 967 aw_mmc_print_error(rint); 970 if (rint & AW_MMC_INT_ERR_BIT) { 972 device_printf(sc->aw_dev, "error rint: 0x%08X\n", rint); 973 aw_mmc_print_error(rint); 975 if (rint & AW_MMC_INT_RESP_TIMEOUT) [all …]
|
| /freebsd/contrib/netbsd-tests/lib/libc/gen/ |
| H A D | t_fpsetround.c | 105 int g = (int)rint(d); in test() 114 tst[i].n, (int)rint(d), tst[i].v[r]); in test()
|
| /freebsd/lib/libc/tests/gen/ |
| H A D | fpsetround_test.c | 106 int g = (int)rint(d); in test() 115 tst[i].n, (int)rint(d), tst[i].v[r]); in test()
|
| /freebsd/contrib/llvm-project/clang/lib/Headers/ |
| H A D | __clang_cuda_math_forward_declares.h | 155 __DEVICE__ double rint(double); 156 __DEVICE__ float rint(float); 260 using ::rint;
|
| H A D | __clang_cuda_cmath.h | 291 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, rint); 420 using ::rint;
|
| H A D | __clang_hip_cmath.h | 245 __DEF_FUN1(float, rint) 539 __HIP_OVERLOAD1(double, rint) 714 using ::rint;
|
| H A D | __clang_cuda_math.h | 195 __DEVICE__ long lrint(double __a) { return (long)rint(__a); } in lrint() 259 __DEVICE__ double rint(double __a) { return __builtin_rint(__a); } in rint() function
|
| H A D | tgmath.h | 1124 __tg_rint(double __x) {return rint(__x);} in __tg_rint() 1130 #undef rint 1131 #define rint(__x) __tg_rint(__tg_promote1((__x))(__x)) macro
|
| /freebsd/lib/msun/ |
| H A D | Makefile | 196 nextafter.3 remainder.3 rint.3 \ 289 MLINKS+=rint.3 rintf.3 rint.3 rintl.3 \ 290 rint.3 nearbyint.3 rint.3 nearbyintf.3 rint.3 nearbyintl.3
|
| H A D | Symbol.map | 150 rint;
|
| /freebsd/contrib/arm-optimized-routines/math/aarch64/ |
| H A D | sincospi_4u.c | 80 double ar_s = x - rint (x); in arm_math_sincospi()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | BranchProbability.cpp | 31 double Percent = rint(((double)N / D) * 100.0 * 100.0) / 100.0; in print()
|
| /freebsd/include/ |
| H A D | tgmath.h | 196 #define rint(x) __tg_simple(x, rint) macro
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | math.h | 489 using std::__math::rint;
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | math.h | 483 using std::__math::rint;
|
| /freebsd/tools/regression/include/tgmath/ |
| H A D | tgmath.c | 145 TGMACRO_REAL(rint) 578 PASS_REAL_ARG_REAL_RET(rint)); in main()
|