Searched refs:scalbn (Results 1 - 12 of 12) sorted by relevance

/barrelfish-master/lib/msun/i387/
H A Ds_scalbn.S39 ENTRY(scalbn)
45 END(scalbn)
/barrelfish-master/lib/msun/src/
H A De_scalb.c20 * should use scalbn() instead.
35 return scalbn(x,fn);
43 if ( fn > 65000.0) return scalbn(x, 65000);
44 if (-fn > 65000.0) return scalbn(x,-65000);
45 return scalbn(x,(int)fn);
H A Ds_scalbn.c18 * scalbn (double x, int n)
19 * scalbn(x,n) returns x* 2**n computed by exponent
37 scalbn (double x, int n) function
64 __weak_reference(scalbn, ldexpl);
65 __weak_reference(scalbn, scalbnl);
H A Ds_scalbln.c39 return (scalbn(x, (n > NMAX) ? NMAX : (n < NMIN) ? NMIN : (int)n));
H A Dk_rem_pio2.c42 * z = scalbn(z,-e0)
75 * double scalbn(), floor();
327 z = scalbn(z,q0); /* actual value of z */
360 if(carry!=0) z -= scalbn(one,q0);
386 z = scalbn(z,-q0);
396 fw = scalbn(one,q0);
H A De_pow.c303 if((j>>20)<=0) z = scalbn(z,n); /* subnormal output */
H A Dmath.h314 double scalbn(double, int);
/barrelfish-master/lib/msun/amd64/
H A Ds_scalbn.S30 ENTRY(scalbn)
40 END(scalbn)
/barrelfish-master/lib/msun/
H A DMakefile143 round.3 scalbn.3 signbit.3 sin.3 sinh.3 sqrt.3 tan.3 tanh.3 trunc.3 \
215 MLINKS+=scalbn.3 scalbln.3 scalbn.3 scalblnf.3 scalbn.3 scalblnl.3
216 MLINKS+=scalbn.3 scalbnf.3 scalbn.3 scalbnl.3
/barrelfish-master/lib/compiler-rt/builtins/
H A Dint_math.h97 #define crt_scalbn(x, y) scalbn((x), (y))
/barrelfish-master/include/
H A Dmath.h314 double scalbn(double, int);
/barrelfish-master/include/cxx/
H A Dmath.h280 floating_point scalbn (arithmetic x, int ex);
1526 // scalbn
1528 inline _LIBCPP_INLINE_VISIBILITY float scalbn(float __lcpp_x, int __lcpp_y) _NOEXCEPT {return ::scalbnf(__lcpp_x, __lcpp_y);}
1529 inline _LIBCPP_INLINE_VISIBILITY long double scalbn(long double __lcpp_x, int __lcpp_y) _NOEXCEPT {return ::scalbnl(__lcpp_x, __lcpp_y);}
1534 scalbn(_A1 __lcpp_x, int __lcpp_y) _NOEXCEPT {return ::scalbn((double)__lcpp_x, __lcpp_y);}

Completed in 104 milliseconds