HomeSort by relevance Sort by last modified time
    Searched refs:scalbn (Results 1 - 22 of 22) sorted by null

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_scalb.c 20 * 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);
s_scalbn.c 18 * 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);
s_scalbln.c 45 return (scalbn(x, in));
k_rem_pio2.c 42 * 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);
e_pow.c 303 if((j>>20)<=0) z = scalbn(z,n); /* subnormal output */
  /external/chromium_org/v8/third_party/fdlibm/
fdlibm.cc 26 inline double scalbn(double x, int y) { return _scalb(x, y); } function in namespace:v8::fdlibm
149 z = scalbn(z, q0);
186 if (carry != 0) z -= scalbn(one, q0);
214 z = scalbn(z, -q0);
226 fw = scalbn(one, q0);
  /external/clang/test/CodeGen/
libcall-declarations.c 157 double scalbn(double, int exp);
293 F(scalblnf), F(scalblnl), F(scalbn), F(scalbnf), F(scalbnl),
456 // CHECK-NOERRNO: declare double @scalbn(double, i32) [[NUW]]
  /bionic/libm/include/
math.h 276 double scalbn(double, int);
  /external/libcxx/test/numerics/c.math/
cmath.disabled.cpp     [all...]
  /bionic/tests/
math_test.cpp 1133 TEST(math, scalbn) {
1134 ASSERT_DOUBLE_EQ(12.0, scalbn(3.0, 2));
1272 ASSERT_DOUBLE_EQ(1024.0, scalbn(dr, exp));
    [all...]
  /external/clang/lib/Headers/
tgmath.h 1157 // scalbn
1165 __tg_scalbn(double __x, int __y) {return scalbn(__x, __y);}
1171 #undef scalbn macro
1172 #define scalbn(__x, __y) __tg_scalbn(__tg_promote1((__x))(__x), __y) macro
  /external/libcxx/test/depr/depr.c.headers/
math_h.disabled.cpp 588 static_assert((std::is_same<decltype(scalbn((double)0, (int)0)), double>::value), "");
591 assert(scalbn(1, 1) == 2);
  /external/ltrace/etc/
libm.so.conf 368 double scalbn(double, int);
  /development/ndk/platforms/android-13/include/
math.h 283 double scalbn(double, int) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-18/include/
math.h 284 double scalbn(double, int) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-3/include/
math.h 282 double scalbn(double, int) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-9/include/
math.h 282 double scalbn(double, int) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-L/include/
math.h 276 double scalbn(double, int) __NDK_FPABI_MATH__;
  /external/compiler-rt/test/builtins/Unit/ppc/
qdiv_test.c     [all...]
qmul_test.c     [all...]
qadd_test.c     [all...]
qsub_test.c     [all...]

Completed in 90 milliseconds