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

12 3 4 5 6 7 8 91011>>

  /external/libchrome/base/
rand_util.cc 46 double result = ldexp(static_cast<double>(random_bits), -1 * kBits);
  /prebuilts/gdb/darwin-x86/include/python2.7/
pymath.h 34 extern double ldexp (double, int);
  /prebuilts/gdb/linux-x86/include/python2.7/
pymath.h 34 extern double ldexp (double, int);
  /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);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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/python/cpython2/Lib/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/gdb/darwin-x86/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/gdb/linux-x86/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/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...]
  /prebuilts/ndk/r10/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/r11/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/r13/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/go/darwin-x86/src/math/
ldexp.go 7 // Ldexp is the inverse of Frexp.
11 // Ldexp(±0, exp) = ±0
12 // Ldexp(±Inf, exp) = ±Inf
13 // Ldexp(NaN, exp) = NaN
14 func Ldexp(frac float64, exp int) float64
16 func ldexp(frac float64, exp int) float64 { func
stubs_arm64.s 39 TEXT ·Ldexp(SB),NOSPLIT,$0
40 B ·ldexp(SB)
  /prebuilts/go/linux-x86/src/math/
ldexp.go 7 // Ldexp is the inverse of Frexp.
11 // Ldexp(±0, exp) = ±0
12 // Ldexp(±Inf, exp) = ±Inf
13 // Ldexp(NaN, exp) = NaN
14 func Ldexp(frac float64, exp int) float64
16 func ldexp(frac float64, exp int) float64 { func
stubs_arm64.s 39 TEXT ·Ldexp(SB),NOSPLIT,$0
40 B ·ldexp(SB)
  /external/python/cpython2/Include/
pymath.h 34 extern double ldexp (double, int);
  /external/clang/lib/Headers/
__clang_cuda_math_forward_declares.h 122 __DEVICE__ double ldexp(double, int);
123 __DEVICE__ float ldexp(float, int);
227 using ::ldexp;
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
__clang_cuda_math_forward_declares.h 122 __DEVICE__ double ldexp(double, int);
123 __DEVICE__ float ldexp(float, int);
227 using ::ldexp;
  /prebuilts/clang/host/darwin-x86/clang-3362437/lib64/clang/3.8/include/
__clang_cuda_math_forward_declares.h 122 __DEVICE__ double ldexp(double, int);
123 __DEVICE__ float ldexp(float, int);
227 using ::ldexp;
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
__clang_cuda_math_forward_declares.h 122 __DEVICE__ double ldexp(double, int);
123 __DEVICE__ float ldexp(float, int);
241 using ::ldexp;
  /prebuilts/clang/host/darwin-x86/clang-3957855/lib64/clang/5.0/include/
__clang_cuda_math_forward_declares.h 122 __DEVICE__ double ldexp(double, int);
123 __DEVICE__ float ldexp(float, int);
241 using ::ldexp;
  /prebuilts/clang/host/darwin-x86/clang-3960126/lib64/clang/5.0/include/
__clang_cuda_math_forward_declares.h 122 __DEVICE__ double ldexp(double, int);
123 __DEVICE__ float ldexp(float, int);
241 using ::ldexp;

Completed in 1586 milliseconds

12 3 4 5 6 7 8 91011>>