Searched refs:scalbnl (Results 1 - 14 of 14) sorted by relevance

/freebsd-11-stable/lib/msun/i387/
H A Ds_scalbnl.S11 ENTRY(scalbnl)
17 END(scalbnl)
20 .set CNAME(ldexpl),CNAME(scalbnl)
/freebsd-11-stable/lib/msun/amd64/
H A Ds_scalbnl.S10 ENTRY(scalbnl)
17 END(scalbnl)
20 .set CNAME(ldexpl),CNAME(scalbnl)
/freebsd-11-stable/lib/msun/src/
H A Ds_scalbln.c53 return (scalbnl(x, (n > NMAX) ? NMAX : (n < NMIN) ? NMIN : (int)n));
H A Ds_scalbnl.c17 * scalbnl (long double x, int n)
18 * scalbnl(x,n) returns x* 2**n computed by exponent
25 * where long double is the same as double, scalbnl() is an alias
43 scalbnl (long double x, int n) function
71 __strong_reference(scalbnl, ldexpl);
H A Ds_scalbn.c65 __weak_reference(scalbn, scalbnl);
H A Dmath.h496 long double scalbnl(long double, int);
/freebsd-11-stable/contrib/netbsd-tests/lib/libm/
H A Dt_scalbn.c352 * scalbnl(3)
357 atf_tc_set_md_var(tc, "descr", "Test scalbnl() for a few values");
372 rv = scalbnl(tests[i].inval, tests[i].exp);
386 atf_tc_set_md_var(tc, "descr", "Test scalbnl(NaN, n) == NaN");
404 y = scalbnl(x, exps[i]);
413 atf_tc_set_md_var(tc, "descr", "Test scalbnl(-Inf, n) == -Inf");
425 ATF_CHECK(scalbnl(x, exps[i]) == x);
432 atf_tc_set_md_var(tc, "descr", "Test scalbnl(+Inf, n) == +Inf");
444 ATF_CHECK(scalbnl(x, exps[i]) == x);
451 atf_tc_set_md_var(tc, "descr", "Test scalbnl(
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dint_math.h99 #define crt_scalbnl(x, y) scalbnl((x), (y))
/freebsd-11-stable/lib/msun/ld128/
H A De_powl.c436 z = scalbnl (z, n); /* subnormal output */
/freebsd-11-stable/tools/regression/include/tgmath/
H A Dtgmath.c151 long double (scalbnl)(long double x, int n) { n_long_double++; } function
/freebsd-11-stable/lib/msun/
H A DMakefile243 MLINKS+=scalbn.3 scalbnf.3 scalbn.3 scalbnl.3
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A Dtgmath.h1162 __tg_scalbn(long double __x, int __y) {return scalbnl(__x, __y);}
/freebsd-11-stable/contrib/llvm-project/libcxx/include/
H A Dmath.h282 long double scalbnl(long double x, int ex);
1533 inline _LIBCPP_INLINE_VISIBILITY long double scalbn(long double __lcpp_x, int __lcpp_y) _NOEXCEPT {return ::scalbnl(__lcpp_x, __lcpp_y);}
/freebsd-11-stable/contrib/libstdc++/
H A Dconfigure31067 scalbnl(0.0l, 0);
[all...]

Completed in 179 milliseconds