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

/freebsd-13-stable/lib/msun/i387/
H A Ds_scalbnl.S11 ENTRY(scalbnl)
17 END(scalbnl)
20 .set CNAME(ldexpl),CNAME(scalbnl)
/freebsd-13-stable/lib/msun/amd64/
H A Ds_scalbnl.S10 ENTRY(scalbnl)
17 END(scalbnl)
20 .set CNAME(ldexpl),CNAME(scalbnl)
/freebsd-13-stable/lib/msun/src/
H A Ds_scalbnl.c6 * scalbnl (long double x, int n)
7 * scalbnl(x,n) returns x* 2**n computed by exponent
12 long double scalbnl(long double x, int n) function
39 __strong_reference(scalbnl, ldexpl);
H A Ds_scalbln.c55 return (scalbnl(x, (n > NMAX) ? NMAX : (n < NMIN) ? NMIN : (int)n));
H A Ds_scalbn.c38 __weak_reference(scalbn, scalbnl);
H A Dmath.h496 long double scalbnl(long double, int);
/freebsd-13-stable/contrib/netbsd-tests/lib/libm/
H A Dt_scalbn.c369 * scalbnl(3)
374 atf_tc_set_md_var(tc, "descr", "Test scalbnl() for a few values");
389 rv = scalbnl(tests[i].inval, tests[i].exp);
406 atf_tc_set_md_var(tc, "descr", "Test scalbnl(NaN, n) == NaN");
424 y = scalbnl(x, exps[i]);
433 atf_tc_set_md_var(tc, "descr", "Test scalbnl(-Inf, n) == -Inf");
445 ATF_CHECK(scalbnl(x, exps[i]) == x);
452 atf_tc_set_md_var(tc, "descr", "Test scalbnl(+Inf, n) == +Inf");
464 ATF_CHECK(scalbnl(x, exps[i]) == x);
471 atf_tc_set_md_var(tc, "descr", "Test scalbnl(
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dint_math.h99 #define crt_scalbnl(x, y) scalbnl((x), (y))
/freebsd-13-stable/lib/msun/ld128/
H A De_powl.c436 z = scalbnl (z, n); /* subnormal output */
/freebsd-13-stable/lib/msun/
H A DMakefile243 MLINKS+=scalbn.3 scalbnf.3 scalbn.3 scalbnl.3
/freebsd-13-stable/tools/regression/include/tgmath/
H A Dtgmath.c151 long double (scalbnl)(long double x, int n) { n_long_double++; } function
/freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/
H A Dtgmath.h1162 __tg_scalbn(long double __x, int __y) {return scalbnl(__x, __y);}
/freebsd-13-stable/contrib/llvm-project/libcxx/include/
H A Dmath.h282 long double scalbnl(long double x, int ex);
1482 inline _LIBCPP_INLINE_VISIBILITY long double scalbn(long double __lcpp_x, int __lcpp_y) _NOEXCEPT {return ::scalbnl(__lcpp_x, __lcpp_y);}

Completed in 125 milliseconds