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

12

/openbsd-current/regress/lib/libm/msun/
H A Dlround_test.c31 * Test for lround(), lroundf(), llround(), and llroundf().
59 test(lround, x, result, excepts); \
81 test(lround, 0x7fffffff.8p0, IGNORE, FE_INVALID);
82 test(lround, -0x80000000.8p0, IGNORE, FE_INVALID);
83 test(lround, 0x80000000.0p0, IGNORE, FE_INVALID);
84 test(lround, 0x7fffffff.4p0, 0x7fffffffl, FE_INEXACT);
85 test(lround, -0x80000000.4p0, -0x80000000l, FE_INEXACT);
89 test(lround, 0x8000000000000000.0p0, IGNORE, FE_INVALID);
91 test(lround, 0x7ffffffffffffc00.0p0, 0x7ffffffffffffc00l, 0);
93 test(lround,
[all...]
/openbsd-current/regress/lib/libm/round/
H A Dround.c40 assert(lround(8.6) == 9L);
47 assert(lround(0.0) == 0L);
50 assert(lround(-0.0) == 0L);
/openbsd-current/lib/libm/src/
H A Ds_lround.c2 /* $NetBSD: lround.c,v 1.2 2004/10/13 15:18:32 drochner Exp $ */
39 #define LROUNDNAME lround
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/t/
H A Dmath.t139 is(lround(-2.75), -3, "lround -2.75");
140 is(lround(-0.25), 0, "lround -0.25");
141 is(lround(-0.50), -1, "lround -0.50");
142 is(signbit(lround(-0.25)), 0, "signbit lround -0.25 zero");
143 ok(signbit(lround(-0.50)), "signbit lround
[all...]
H A Dexport.t155 # (though an oversight meant that lround wasn't listed here
165 isnormal isunordered j0 j1 jn lgamma log1p log2 logb lrint lround nan
/openbsd-current/games/pom/
H A Dpom.c104 if (lround(today) == 100)
106 else if (lround(today) == 0)
110 if (lround(today) == 50) {
/openbsd-current/gnu/llvm/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.h899 long int lround(double __x) { return __ocml_round_f64(__x); } function
/openbsd-current/gnu/gcc/libstdc++-v3/include/tr1/
H A Dmath.h78 using std::tr1::lround;
/openbsd-current/include/
H A Dtgmath.h148 #define lround(x) __tg_simple(x, lround) macro
H A Dmath.h229 long int lround(double);
/openbsd-current/lib/libm/hidden/
H A Dmath.h148 PROTO_NORMAL(lround); variable
/openbsd-current/gnu/llvm/libcxx/include/
H A Dmath.h240 long lround (arithmetic x);
1429 // lround
1431 inline _LIBCPP_HIDE_FROM_ABI long lround(float __x) _NOEXCEPT
1437 _LIBCPP_HIDE_FROM_ABI long lround(double __x) _NOEXCEPT {
1441 inline _LIBCPP_HIDE_FROM_ABI long lround(long double __x) _NOEXCEPT
1449 lround(_A1 __x) _NOEXCEPT
/openbsd-current/lib/libm/
H A DMakefile150 lgamma.3 logb.3 lrint.3 lround.3 nan.3 nextafter.3 \
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/lib/
H A DPOSIX.pm431 jn lgamma log1p log2 logb lrint lround nan nearbyint nextafter nexttoward
/openbsd-current/gnu/usr.bin/perl/vms/
H A Dvmsish.h778 long int lround(double __x);
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/
H A DPOSIX.xs206 log1p log2 logb lrint lround nan nearbyint nextafter nexttoward remainder
357 # define c99_lround lround
2399 lround = 7
2446 not_here("lround");
/openbsd-current/gnu/llvm/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp1887 case Intrinsic::lround:
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp1809 case Intrinsic::lround:
/openbsd-current/gnu/usr.bin/perl/
H A Dconfig_h.SH3017 * This symbol, if defined, indicates that the lround routine is
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DValueTracking.cpp5317 case Intrinsic::lround:

Completed in 386 milliseconds

12