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

1 2 3

  /bionic/libc/upstream-netbsd/lib/libc/stdlib/
erand48.c 39 return ldexp((double) xseed[0], -48) +
40 ldexp((double) xseed[1], -32) +
41 ldexp((double) xseed[2], -16);
  /external/libcxx/test/support/
hexfloat.h 31 value_ = std::ldexp(m1 + s * std::ldexp(T(m0), -static_cast<int>(n -
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestLdexp.rs 26 return ldexp(inX, inY);
31 return ldexp(inX, inY);
36 return ldexp(inX, inY);
41 return ldexp(inX, inY);
46 return ldexp(inX, inY);
51 return ldexp(inX, inY);
56 return ldexp(inX, inY);
  /bionic/libstdc++/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);
printf-frexp.c 45 # define LDEXP ldexpl
58 # define LDEXP ldexp
75 /* frexp and ldexp are usually faster than the loop below. */
83 x = LDEXP (x, exponent - (MIN_EXP - 1));
  /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));
s_fmal.c 90 * Compute ldexp(a+b, scale) with a single rounding error. It is assumed
119 return (ldexp(sum.hi, scale));
  /external/chromium_org/base/
rand_util.cc 41 double result = ldexp(static_cast<double>(random_bits), -1 * kBits);
  /external/deqp/framework/delibs/debase/
deRandom.c 91 return ldexp((double)(deRandom_getUint64(rnd) & ((1ull << DBL_MANT_DIG) - 1)),
deMath.h 93 DE_INLINE float deFloatLdExp (float a, int exponent) { return (float)ldexp(a, exponent); }
107 DE_INLINE double deLdExp (double a, int exponent) { return ldexp(a, exponent); }
  /external/ceres-solver/internal/ceres/
polynomial.cc 83 const double scaled_col_norm = std::ldexp(col_norm, exponent);
84 const double scaled_row_norm = std::ldexp(row_norm, -exponent);
90 companion_matrix_offdiagonal.row(i) *= std::ldexp(1.0, -exponent);
91 companion_matrix_offdiagonal.col(i) *= std::ldexp(1.0, exponent);
  /bionic/libc/upstream-freebsd/lib/libc/gen/
ldexp.c 98 ldexp(double x, int n) function
  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_entropy.c 107 entropy,ldexp(nbits,-3),100*(nbits-ldexp(entropy,3))/nbits);
132 ldexp(nbits2,-3),ldexp(nbits,-3));
  /external/libopus/celt/tests/
test_unit_entropy.c 107 entropy,ldexp(nbits,-3),100*(nbits-ldexp(entropy,3))/nbits);
132 ldexp(nbits2,-3),ldexp(nbits,-3));
  /external/eigen/unsupported/test/
matrix_power.cpp 54 C = Apow(std::ldexp(angle,1) / M_PI);
71 angle = std::ldexp(static_cast<T>(i-10), -1);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
dtmf_tone_generator_unittest.cc 51 x = ldexp(x, 14); // Scale to Q14.
delay_manager_unittest.cc 91 EXPECT_NEAR(ldexp(pow(0.5, static_cast<int>(i + 1)), 30), vec[i], 65536);
  /external/deqp/framework/common/
tcuInterval.cpp 33 using std::ldexp;
  /external/clang/test/CodeGen/
libcall-declarations.c 28 double ldexp(double, int);
267 F(frexp), F(frexpf), F(frexpl), F(ldexp), F(ldexpf),
330 // CHECK-NOERRNO: declare double @ldexp(double, i32) [[NUW]]
  /external/libvorbis/lib/
sharedbook.c 56 mant=rint(ldexp(val,(VQ_FMAN-1)-exp));
67 return(ldexp(mant,exp-(VQ_FMAN-1)-VQ_FEXP_BIAS));
  /external/chromium_org/third_party/skia/third_party/lua/src/
lmathlib.c 164 lua_pushnumber(L, l_mathop(ldexp)(x, ep));
247 {"ldexp", math_ldexp},
lobject.c 152 return l_mathop(ldexp)(r, e);
  /bionic/libm/include/
math.h 206 double ldexp(double, int);

Completed in 223 milliseconds

1 2 3