/freebsd/lib/msun/tests/ |
H A D | lround_test.c | 57 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/contrib/llvm-project/libcxx/include/__math/ |
H A D | rounding_functions.h | 113 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/contrib/llvm-project/clang/lib/Headers/ |
H A D | __clang_cuda_math_forward_declares.h | 136 __DEVICE__ long lround(double); 137 __DEVICE__ long lround(float); 250 using ::lround;
|
H A D | __clang_cuda_cmath.h | 286 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(long, lround) 414 using ::lround;
|
H A D | __clang_hip_cmath.h | 240 __DEF_FUN1(long, lround) 528 __HIP_OVERLOAD1(long, lround) 697 using ::lround;
|
H A D | tgmath.h | 1014 __tg_lround(double __x) {return lround(__x);} in __tg_lround() 1020 #undef lround 1021 #define lround(__x) __tg_lround(__tg_promote1((__x))(__x)) macro
|
/freebsd/lib/msun/ |
H A D | Makefile | 180 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
|
H A D | Symbol.map | 135 lround;
|
/freebsd/lib/msun/src/ |
H A D | s_lround.c | 39 #define fn lround
|
H A D | math.h | 285 long lround(double);
|
/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/ |
H A D | finite_pow.h | 177 uint64_t ki = lround (z); in exp_inline() 225 uint64_t ki = lround (z); in exp_nosignbias()
|
/freebsd/include/ |
H A D | tgmath.h | 189 #define lround(x) __tg_simple(x, lround) macro
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | math.h | 481 using std::__math::lround;
|
H A D | cmath | 255 long lround (arithmetic x); 467 using ::lround _LIBCPP_USING_IF_EXISTS;
|
/freebsd/tools/regression/include/tgmath/ |
H A D | tgmath.c | 135 TGMACRO_REAL_FIXED_RET(lround, long) in TGMACRO_REAL_FIXED_RET() 557 PASS_REAL_ARG_FIXED_RET(lround, long)); in main()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | ConstrainedOps.def | 87 DAG_FUNCTION(lround, 1, 0, experimental_constrained_lround, LROUND)
|
H A D | RuntimeLibcalls.def | 303 HANDLE_LIBCALL(LROUND_F64, "lround")
|
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/ |
H A D | cmath.inc | 191 using ::lround _LIBCPP_USING_IF_EXISTS;
|
/freebsd/contrib/arm-optimized-routines/math/ |
H A D | math_config.h | 194 return lround (x); in converttoint()
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | cmath.cppm |
|
H A D | cmath.inc | 192 using std::lround _LIBCPP_USING_IF_EXISTS;
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | NumericalStabilitySanitizer.cpp | 1390 {"llvm.lround.f32", Intrinsic::lround, makeDoubleDouble}, 1391 {"llvm.lround.f64", Intrinsic::lround, makeX86FP80X86FP80}, 1392 {"llvm.lround.f80", Intrinsic::lround, makeX86FP80X86FP80},
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/ |
H A D | SelectionDAGCompat.td | 184 def : GINodeEquiv<G_LROUND, lround>;
|
/freebsd/usr.sbin/moused/ |
H A D | moused.c | 946 *movex = lround(fdx); in linacc() 947 *movey = lround(fdy); in linacc()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/ |
H A D | TargetSelectionDAG.td | 547 def lround : SDNode<"ISD::LROUND" , SDTFPToIntOp>; 1611 (lround node:$src)]>;
|