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

/barrelfish-master/lib/msun/i387/
H A Ds_scalbnl.S11 ENTRY(scalbnl)
17 END(scalbnl)
20 .set CNAME(ldexpl),CNAME(scalbnl)
/barrelfish-master/lib/msun/amd64/
H A Ds_scalbnl.S10 ENTRY(scalbnl)
17 END(scalbnl)
20 .set CNAME(ldexpl),CNAME(scalbnl)
/barrelfish-master/lib/msun/src/
H A Ds_scalbln.c53 return (scalbnl(x, (n > NMAX) ? NMAX : (n < NMIN) ? NMIN : (int)n));
H A Ds_scalbnl.c18 * scalbnl (long double x, int n)
19 * scalbnl(x,n) returns x* 2**n computed by exponent
26 * where long double is the same as double, scalbnl() is an alias
45 scalbnl (long double x, int n) function
71 __strong_reference(scalbnl, ldexpl);
H A Ds_scalbn.c65 __weak_reference(scalbn, scalbnl);
H A Dmath.h491 long double scalbnl(long double, int);
/barrelfish-master/lib/compiler-rt/builtins/
H A Dint_math.h99 #define crt_scalbnl(x, y) scalbnl((x), (y))
/barrelfish-master/include/
H A Dmath.h491 long double scalbnl(long double, int);
/barrelfish-master/lib/msun/
H A DMakefile216 MLINKS+=scalbn.3 scalbnf.3 scalbn.3 scalbnl.3
/barrelfish-master/include/cxx/
H A Dmath.h282 long double scalbnl(long double x, int ex);
1529 inline _LIBCPP_INLINE_VISIBILITY long double scalbn(long double __lcpp_x, int __lcpp_y) _NOEXCEPT {return ::scalbnl(__lcpp_x, __lcpp_y);}

Completed in 101 milliseconds