HomeSort by relevance Sort by last modified time
    Searched refs:ldexp (Results 26 - 50 of 193) sorted by null

12 3 4 5 6 7 8

  /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...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 373 _STLP_MATH_INLINE2X(double, int, ldexp, ldexp)
410 # if defined (ldexp)
411 inline double __stlp_ldexp(double __x, int __y) { return ldexp(__x, __y); }
412 # undef ldexp macro
413 inline double ldexp(double __x, int __y) { return __stlp_ldexp(__x, __y); } function
444 _STLP_DEF_MATH_INLINE2I(ldexp, ldexp)
581 using ::ldexp;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 373 _STLP_MATH_INLINE2X(double, int, ldexp, ldexp)
410 # if defined (ldexp)
411 inline double __stlp_ldexp(double __x, int __y) { return ldexp(__x, __y); }
412 # undef ldexp macro
413 inline double ldexp(double __x, int __y) { return __stlp_ldexp(__x, __y); } function
444 _STLP_DEF_MATH_INLINE2I(ldexp, ldexp)
581 using ::ldexp;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 373 _STLP_MATH_INLINE2X(double, int, ldexp, ldexp)
410 # if defined (ldexp)
411 inline double __stlp_ldexp(double __x, int __y) { return ldexp(__x, __y); }
412 # undef ldexp macro
413 inline double ldexp(double __x, int __y) { return __stlp_ldexp(__x, __y); } function
444 _STLP_DEF_MATH_INLINE2I(ldexp, ldexp)
581 using ::ldexp;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 373 _STLP_MATH_INLINE2X(double, int, ldexp, ldexp)
410 # if defined (ldexp)
411 inline double __stlp_ldexp(double __x, int __y) { return ldexp(__x, __y); }
412 # undef ldexp macro
413 inline double ldexp(double __x, int __y) { return __stlp_ldexp(__x, __y); } function
444 _STLP_DEF_MATH_INLINE2I(ldexp, ldexp)
581 using ::ldexp;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 373 _STLP_MATH_INLINE2X(double, int, ldexp, ldexp)
410 # if defined (ldexp)
411 inline double __stlp_ldexp(double __x, int __y) { return ldexp(__x, __y); }
412 # undef ldexp macro
413 inline double ldexp(double __x, int __y) { return __stlp_ldexp(__x, __y); } function
444 _STLP_DEF_MATH_INLINE2I(ldexp, ldexp)
581 using ::ldexp;
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_cmath.h 373 _STLP_MATH_INLINE2X(double, int, ldexp, ldexp)
410 # if defined (ldexp)
411 inline double __stlp_ldexp(double __x, int __y) { return ldexp(__x, __y); }
412 # undef ldexp macro
413 inline double ldexp(double __x, int __y) { return __stlp_ldexp(__x, __y); } function
444 _STLP_DEF_MATH_INLINE2I(ldexp, ldexp)
581 using ::ldexp;
  /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);
  /ndk/tests/device/test-gnustl-full/unit/
cmath_test.cpp 100 CPPUNIT_CHECK( are_equals(std::ldexp(1.0, 2), 4.0) );
125 CPPUNIT_CHECK( are_equals(std::ldexp(1.0f, 2), 4.0f) );
151 CPPUNIT_CHECK( are_equals(std::ldexp(1.0l, 2), 4.0l) );
  /ndk/tests/device/test-stlport/unit/
cmath_test.cpp 100 CPPUNIT_CHECK( are_equals(std::ldexp(1.0, 2), 4.0) );
125 CPPUNIT_CHECK( are_equals(std::ldexp(1.0f, 2), 4.0f) );
151 CPPUNIT_CHECK( are_equals(std::ldexp(1.0l, 2), 4.0l) );
  /bionic/libc/upstream-freebsd/lib/libc/gen/
ldexp.c 98 ldexp(double x, int n) function
  /external/bison/lib/
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));
  /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));
  /frameworks/rs/cpu_ref/
rsCpuRuntimeMathFuncs.cpp 64 float __attribute__((overloadable)) ldexp(float v, int i) {return SC_ldexpf(v, i);} function
  /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);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmal.c 90 * Compute ldexp(a+b, scale) with a single rounding error. It is assumed
119 return (ldexp(sum.hi, scale));
  /external/deqp/framework/common/
tcuInterval.cpp 33 using std::ldexp;
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/
tgmath.h 141 #define ldexp(x,y) __TGMATH_REAL_1_2(x, y, ldexp) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 152 #define ldexp(x,y) __TGMATH_REAL_1_2(x, y, ldexp) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 152 #define ldexp(x,y) __TGMATH_REAL_1_2(x, y, ldexp) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/
tgmath.h 141 #define ldexp(x,y) __TGMATH_REAL_1_2(x, y, ldexp) macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/
tgmath.h 141 #define ldexp(x,y) __TGMATH_REAL_1_2(x, y, ldexp) macro
  /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/deqp/framework/delibs/debase/
deMath.h 95 DE_INLINE float deFloatLdExp (float a, int exponent) { return (float)ldexp(a, exponent); }
109 DE_INLINE double deLdExp (double a, int exponent) { return ldexp(a, exponent); }
  /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));

Completed in 1433 milliseconds

12 3 4 5 6 7 8