HomeSort by relevance Sort by last modified time
    Searched full:ldexp (Results 51 - 75 of 704) sorted by null

1 23 4 5 6 7 8 91011>>

  /development/ndk/platforms/android-13/arch-mips/symbols/
libm.so.functions.txt 106 ldexp
  /development/ndk/platforms/android-18/arch-arm/symbols/
libm.so.functions.txt 154 ldexp
  /development/ndk/platforms/android-18/arch-mips/symbols/
libm.so.functions.txt 106 ldexp
  /development/ndk/platforms/android-3/arch-arm/symbols/
libm.so.functions.txt 154 ldexp
  /development/ndk/platforms/android-9/arch-arm/symbols/
libm.so.functions.txt 154 ldexp
  /development/ndk/platforms/android-9/arch-mips/symbols/
libm.so.functions.txt 106 ldexp
  /external/clang/test/CodeGen/
libcalls-ld.c 6 // RUN: %clang_cc1 %s -emit-llvm -O1 -o - | grep {call.*ldexp}
  /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));
  /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...]
  /external/bison/lib/
ldexpl.c 31 return ldexp (x, exp);
  /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/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
math.so 
  /external/stlport/test/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-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/libstdc++/include/
cmath 59 using ::ldexp;
  /external/chromium_org/base/
rand_util.cc 41 double result = ldexp(static_cast<double>(random_bits), -1 * kBits);
  /external/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;
  /ndk/sources/cxx-stl/gabi++/include/
cmath 59 using ::ldexp;
  /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;
  /ndk/sources/cxx-stl/system/include/
cmath 59 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/5/sources/cxx-stl/system/include/
cmath 59 using ::ldexp;

Completed in 972 milliseconds

1 23 4 5 6 7 8 91011>>