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

  /bionic/libm/upstream-freebsd/lib/msun/bsdsrc/
b_exp.c 46 * scalb(x,n)
113 return scalb(1.0+(hi-(lo-(x*c)/(2.0-c))),k);
120 if(finite(x)) return(scalb(1.0,-5000));
129 return( finite(x) ? scalb(1.0,5000) : x);
159 return scalb(1.+(hi-(lo - c)), k);
165 if(finite(x)) return(scalb(1.0,-5000));
174 return( finite(x) ? scalb(1.0,5000) : x);
  /external/guava/guava-tests/test/com/google/common/math/
DoubleUtilsTest.java 17 assertEquals(d * StrictMath.pow(2.0, k), DoubleUtils.scalb(d, k));
DoubleMathTest.java 340 double x = Math.scalb(Math.sqrt(2) + 0.001, exp);
341 double y = Math.scalb(Math.sqrt(2) - 0.001, exp);
MathTesting.java 218 for (double d : Doubles.asList(0, 1, 2, 7, 51, 102, Math.scalb(1.0, 53), Integer.MIN_VALUE,
  /external/guava/guava/src/com/google/common/math/
DoubleUtils.java 88 static strictfp double scalb(double d, int scale) { method in class:DoubleUtils
89 // TODO: replace with Math.scalb in JDK 6
  /bionic/libm/include/
math.h 264 double scalb(double, double);
  /bionic/libm/upstream-freebsd/lib/msun/src/
math_private.h 697 #define __ieee754_scalb scalb
  /external/ltrace/etc/
libm.so.conf 364 double scalb(double, double);
  /development/ndk/platforms/android-13/include/
math.h 265 double scalb(double, double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-18/include/
math.h 266 double scalb(double, double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-3/include/
math.h 264 double scalb(double, double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-9/include/
math.h 264 double scalb(double, double) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-L/include/
math.h 264 double scalb(double, double) __NDK_FPABI_MATH__;
  /bionic/tests/
math_test.cpp 1113 TEST(math, scalb) {
1114 ASSERT_DOUBLE_EQ(12.0, scalb(3.0, 2.0));
    [all...]
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 

Completed in 155 milliseconds