Home
last modified time | relevance | path

Searched refs:lround (Results 1 – 25 of 37) sorted by relevance

12

/freebsd-14-stable/lib/msun/tests/
HDlround_test.c57 test(lround, x, result, excepts); \
79 test(lround, 0x7fffffff.8p0, IGNORE, FE_INVALID); in ATF_TC_BODY()
80 test(lround, -0x80000000.8p0, IGNORE, FE_INVALID); in ATF_TC_BODY()
81 test(lround, 0x80000000.0p0, IGNORE, FE_INVALID); in ATF_TC_BODY()
82 test(lround, 0x7fffffff.4p0, 0x7fffffffl, FE_INEXACT); in ATF_TC_BODY()
83 test(lround, -0x80000000.4p0, -0x80000000l, FE_INEXACT); in ATF_TC_BODY()
87 test(lround, 0x8000000000000000.0p0, IGNORE, FE_INVALID); in ATF_TC_BODY()
89 test(lround, 0x7ffffffffffffc00.0p0, 0x7ffffffffffffc00l, 0); in ATF_TC_BODY()
91 test(lround, -0x8000000000000800.0p0, IGNORE, FE_INVALID); in ATF_TC_BODY()
93 test(lround, -0x8000000000000000.0p0, (long)-0x8000000000000000l, 0); in ATF_TC_BODY()
/freebsd-14-stable/contrib/llvm-project/libcxx/include/__math/
HDrounding_functions.h113 inline _LIBCPP_HIDE_FROM_ABI long lround(float __x) _NOEXCEPT { return __builtin_lroundf(__x); } in lround() function
116 _LIBCPP_HIDE_FROM_ABI long lround(double __x) _NOEXCEPT { in lround() function
120 inline _LIBCPP_HIDE_FROM_ABI long lround(long double __x) _NOEXCEPT { return __builtin_lroundl(__x)… in lround() function
123 inline _LIBCPP_HIDE_FROM_ABI long lround(_A1 __x) _NOEXCEPT { in lround() function
/freebsd-14-stable/contrib/llvm-project/clang/lib/Headers/
HD__clang_cuda_math_forward_declares.h136 __DEVICE__ long lround(double);
137 __DEVICE__ long lround(float);
250 using ::lround;
HD__clang_cuda_cmath.h286 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(long, lround)
414 using ::lround;
HD__clang_hip_cmath.h240 __DEF_FUN1(long, lround)
528 __HIP_OVERLOAD1(long, lround)
697 using ::lround;
HD__clang_cuda_math.h188 __DEVICE__ long lround(double __a) { return llround(__a); } in lround() function
193 __DEVICE__ long lround(double __a) { return round(__a); } in lround() function
HDtgmath.h1014 __tg_lround(double __x) {return lround(__x);} in __tg_lround()
1020 #undef lround
1021 #define lround(__x) __tg_lround(__tg_promote1((__x))(__x)) macro
HD__clang_hip_math.h904 long int lround(double __x) { return __builtin_round(__x); }
/freebsd-14-stable/lib/msun/
HDMakefile182 lgamma.3 log.3 lrint.3 lround.3 math.3 nan.3 \
252 MLINKS+=lround.3 llround.3 lround.3 llroundf.3 lround.3 llroundl.3 \
253 lround.3 lroundf.3 lround.3 lroundl.3
HDSymbol.map135 lround;
/freebsd-14-stable/lib/msun/src/
HDs_lround.c39 #define fn lround
HDmath.h275 long lround(double);
/freebsd-14-stable/include/
HDtgmath.h189 #define lround(x) __tg_simple(x, lround) macro
/freebsd-14-stable/contrib/llvm-project/libcxx/include/
HDmath.h481 using std::__math::lround;
HDcmath255 long lround (arithmetic x);
467 using ::lround _LIBCPP_USING_IF_EXISTS;
/freebsd-14-stable/tools/regression/include/tgmath/
HDtgmath.c135 TGMACRO_REAL_FIXED_RET(lround, long) in TGMACRO_REAL_FIXED_RET()
557 PASS_REAL_ARG_FIXED_RET(lround, long)); in main()
/freebsd-14-stable/contrib/llvm-project/llvm/include/llvm/IR/
HDConstrainedOps.def87 DAG_FUNCTION(lround, 1, 0, experimental_constrained_lround, LROUND)
HDRuntimeLibcalls.def303 HANDLE_LIBCALL(LROUND_F64, "lround")
/freebsd-14-stable/contrib/llvm-project/libcxx/modules/std.compat/
HDcmath.inc191 using ::lround _LIBCPP_USING_IF_EXISTS;
/freebsd-14-stable/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
HDcmath61 __DEVICE__ long int lround(float __x) { return ::lroundf(__x); }
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
HDNumericalStabilitySanitizer.cpp1390 {"llvm.lround.f32", Intrinsic::lround, makeDoubleDouble},
1391 {"llvm.lround.f64", Intrinsic::lround, makeX86FP80X86FP80},
1392 {"llvm.lround.f80", Intrinsic::lround, makeX86FP80X86FP80},
/freebsd-14-stable/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/
HDSelectionDAGCompat.td184 def : GINodeEquiv<G_LROUND, lround>;
/freebsd-14-stable/contrib/llvm-project/libcxx/modules/std/
HDcmath.inc192 using std::lround _LIBCPP_USING_IF_EXISTS;
/freebsd-14-stable/usr.sbin/moused/
HDmoused.c947 *movex = lround(fdx); in linacc()
948 *movey = lround(fdy); in linacc()
/freebsd-14-stable/contrib/llvm-project/llvm/include/llvm/Target/
HDTargetSelectionDAG.td547 def lround : SDNode<"ISD::LROUND" , SDTFPToIntOp>;
1611 (lround node:$src)]>;

12