Searched refs:lround (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-current/lib/msun/tests/
H A Dlround_test.c28 * Test for lround(), lroundf(), llround(), and llroundf().
57 test(lround, x, result, excepts); \
79 test(lround, 0x7fffffff.8p0, IGNORE, FE_INVALID);
80 test(lround, -0x80000000.8p0, IGNORE, FE_INVALID);
81 test(lround, 0x80000000.0p0, IGNORE, FE_INVALID);
82 test(lround, 0x7fffffff.4p0, 0x7fffffffl, FE_INEXACT);
83 test(lround, -0x80000000.4p0, -0x80000000l, FE_INEXACT);
87 test(lround, 0x8000000000000000.0p0, IGNORE, FE_INVALID);
89 test(lround, 0x7ffffffffffffc00.0p0, 0x7ffffffffffffc00l, 0);
91 test(lround,
[all...]
/freebsd-current/lib/msun/src/
H A Ds_lround.c39 #define fn lround
44 * of the form xxx.5; they are "out of range" because lround() rounds away
H A Dmath.h290 long lround(double);
/freebsd-current/contrib/arm-optimized-routines/pl/math/
H A Dexpf.c63 ki = lround (z);
H A Dfinite_pow.h177 uint64_t ki = lround (z);
225 uint64_t ki = lround (z);
H A Dmath_config.h42 /* Compiler can inline lround, but not (long)round(x). */
143 return lround (x);
/freebsd-current/contrib/llvm-project/libcxx/include/__math/
H A Drounding_functions.h111 // lround
113 inline _LIBCPP_HIDE_FROM_ABI long lround(float __x) _NOEXCEPT { return __builtin_lroundf(__x); }
116 _LIBCPP_HIDE_FROM_ABI long lround(double __x) _NOEXCEPT {
120 inline _LIBCPP_HIDE_FROM_ABI long lround(long double __x) _NOEXCEPT { return __builtin_lroundl(__x); }
123 inline _LIBCPP_HIDE_FROM_ABI long lround(_A1 __x) _NOEXCEPT {
/freebsd-current/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h136 __DEVICE__ long lround(double);
137 __DEVICE__ long lround(float);
250 using ::lround;
H A D__clang_cuda_cmath.h286 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(long, lround)
414 using ::lround;
H A D__clang_cuda_math.h188 __DEVICE__ long lround(double __a) { return llround(__a); } function
193 __DEVICE__ long lround(double __a) { return round(__a); } function
H A Dtgmath.h1006 // lround
1014 __tg_lround(double __x) {return lround(__x);}
1020 #undef lround macro
1021 #define lround(__x) __tg_lround(__tg_promote1((__x))(__x)) macro
H A D__clang_hip_cmath.h240 __DEF_FUN1(long, lround)
528 __HIP_OVERLOAD1(long, lround)
697 using ::lround;
H A D__clang_hip_math.h904 long int lround(double __x) { return __builtin_round(__x); } function
/freebsd-current/lib/msun/
H A DMakefile180 lgamma.3 log.3 lrint.3 lround.3 math.3 nan.3 \
250 MLINKS+=lround.3 llround.3 lround.3 llroundf.3 lround.3 llroundl.3 \
251 lround.3 lroundf.3 lround.3 lroundl.3
/freebsd-current/include/
H A Dtgmath.h189 #define lround(x) __tg_simple(x, lround) macro
/freebsd-current/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcmath.inc191 using ::lround;
/freebsd-current/contrib/arm-optimized-routines/math/aarch64/
H A Dv_powf.c131 uint64_t ki = lround (ylogx);
/freebsd-current/contrib/llvm-project/libcxx/include/
H A Dmath.h240 long lround (arithmetic x);
481 using std::__math::lround;
/freebsd-current/tools/regression/include/tgmath/
H A Dtgmath.c135 TGMACRO_REAL_FIXED_RET(lround, long)
556 PRINT("lround",
557 PASS_REAL_ARG_FIXED_RET(lround, long));
/freebsd-current/contrib/arm-optimized-routines/math/
H A Dmath_config.h41 /* Compiler can inline lround, but not (long)round(x). */
156 return lround (x);
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dcmath.inc192 using std::lround;
/freebsd-current/usr.sbin/moused/
H A Dmoused.c946 *movex = lround(fdx);
947 *movey = lround(fdy);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp2012 case Intrinsic::lround:
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp1919 case Intrinsic::lround:
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp5758 case Intrinsic::lround:

Completed in 249 milliseconds

12