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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/math/
ldexp_amd64.s 7 TEXT ·Ldexp(SB),NOSPLIT,$0
8 JMP ·ldexp(SB)
ldexp_arm.s 7 TEXT ·Ldexp(SB),NOSPLIT,$0
8 B ·ldexp(SB)
  /prebuilts/go/linux-x86/src/math/
ldexp_amd64.s 7 TEXT ·Ldexp(SB),NOSPLIT,$0
8 JMP ·ldexp(SB)
ldexp_arm.s 7 TEXT ·Ldexp(SB),NOSPLIT,$0
8 B ·ldexp(SB)
  /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/ltp/testcases/misc/math/float/
float_exp_log.c 39 {FUNC_LDEXP, 50, ldexp, "ldexp", "ldexp_inp.ref", "ldexp_out.ref",
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestLdexp.rs 26 return ldexp(inMantissa, inExponent);
31 return ldexp(inMantissa, inExponent);
36 return ldexp(inMantissa, inExponent);
41 return ldexp(inMantissa, inExponent);
46 return ldexp(inMantissa, inExponent);
51 return ldexp(inMantissa, inExponent);
56 return ldexp(inMantissa, inExponent);
  /external/libcxx/test/support/
hexfloat.h 44 value_ = std::ldexp(m1 + s * std::ldexp(T(m0), exp2), exp);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
hexfloat.h 44 value_ = std::ldexp(m1 + s * std::ldexp(T(m0), exp2), exp);
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
s_ldexp.c 23 ldexp(double value, int exp) function
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic54x/
math.s 19 .float $ldexp(1,2)
  /prebuilts/ndk/r16/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);
  /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));
  /bionic/tests/headers/posix/
tgmath_h.c 91 ldexp(f1, i); ldexp(d1, i); ldexp(ld1, i);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pymath.h 34 extern double ldexp (double, int);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pymath.h 34 extern double ldexp (double, int);
  /external/deqp/framework/delibs/debase/
deRandom.c 91 return ldexp((double)(deRandom_getUint64(rnd) & ((1ull << DBL_MANT_DIG) - 1)),
  /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...]

Completed in 2003 milliseconds

1 2 3 4 5 6 7 8 91011>>