HomeSort by relevance Sort by last modified time
    Searched refs:ldexp (Results 1 - 25 of 153) sorted by null

1 2 3 4 5 6 7

  /bionic/libc/upstream-netbsd/libc/stdlib/
erand48.c 39 return ldexp((double) xseed[0], -48) +
40 ldexp((double) xseed[1], -32) +
41 ldexp((double) xseed[2], -16);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
hexfloat.h 31 value_ = std::ldexp(m1 + s * std::ldexp(T(m0), -static_cast<int>(n -
  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 57 using ::ldexp;
  /bionic/libstdc++/include/
cmath 59 using ::ldexp;
  /ndk/sources/cxx-stl/gabi++/include/
cmath 59 using ::ldexp;
  /ndk/sources/cxx-stl/system/include/
cmath 59 using ::ldexp;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cmath 57 using ::ldexp;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cmath 57 using ::ldexp;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cmath 59 using ::ldexp;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cmath 59 using ::ldexp;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cmath 59 using ::ldexp;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cmath 59 using ::ldexp;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cmath 59 using ::ldexp;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cmath 59 using ::ldexp;
  /prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
cmath 59 using ::ldexp;
  /prebuilts/ndk/9/sources/cxx-stl/system/include/
cmath 59 using ::ldexp;
  /bionic/libm/upstream-freebsd/lib/msun/bsdsrc/
b_log.c 383 g = ldexp(x, -m);
386 g = ldexp(g, -j);
444 g = ldexp(x, -m);
447 g = ldexp(g, -j);
  /external/bison/lib/
ldexpl.c 31 return ldexp (x, exp);
  /external/chromium/base/
rand_util.cc 34 double result = ldexp(static_cast<double>(random_bits), -1 * kBits);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fma.c 94 * Compute ldexp(a+b, scale) with a single rounding error. It is assumed
127 return (ldexp(sum.hi, scale));
236 zs = ldexp(zs, -spread);
264 return (xy.hi + vzs + ldexp(xy.lo, spread));
276 return (ldexp(r.hi + adj, spread));
281 return (ldexp(r.hi + adj, spread));
  /external/ceres-solver/internal/ceres/
polynomial.cc 82 const double scaled_col_norm = std::ldexp(col_norm, exponent);
83 const double scaled_row_norm = std::ldexp(row_norm, -exponent);
89 companion_matrix_offdiagonal.row(i) *= std::ldexp(1.0, -exponent);
90 companion_matrix_offdiagonal.col(i) *= std::ldexp(1.0, exponent);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pymath.h 34 extern double ldexp (double, int);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pymath.h 34 extern double ldexp (double, int);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_math.py 470 # different algorithm based on frexp, ldexp and integer
485 mant, exp = int(math.ldexp(mant, mant_dig)), exp - mant_dig
501 return math.ldexp(tmant, texp)
560 self.assertRaises(TypeError, math.ldexp)
561 self.ftest('ldexp(0,1)', math.ldexp(0,1), 0)
562 self.ftest('ldexp(1,1)', math.ldexp(1,1), 2)
563 self.ftest('ldexp(1,-1)', math.ldexp(1,-1), 0.5
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_math.py 470 # different algorithm based on frexp, ldexp and integer
485 mant, exp = int(math.ldexp(mant, mant_dig)), exp - mant_dig
501 return math.ldexp(tmant, texp)
560 self.assertRaises(TypeError, math.ldexp)
561 self.ftest('ldexp(0,1)', math.ldexp(0,1), 0)
562 self.ftest('ldexp(1,1)', math.ldexp(1,1), 2)
563 self.ftest('ldexp(1,-1)', math.ldexp(1,-1), 0.5
    [all...]

Completed in 461 milliseconds

1 2 3 4 5 6 7