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

1 2

  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestExp10.rs 24 return exp10(inV);
28 return exp10(inV);
32 return exp10(inV);
36 return exp10(inV);
40 return exp10(inV);
44 return exp10(inV);
48 return exp10(inV);
52 return exp10(inV);
  /libcore/luni/src/main/native/
cbigint.cpp 539 int exp10 = e; local
561 while (exp10 >= 19)
566 exp10 -= 19;
568 while (exp10 >= 9)
573 exp10 -= 9;
575 if (exp10 == 0)
577 else if (exp10 == 1)
583 else if (exp10 == 2)
592 else if (exp10 == 3)
598 else if (exp10 == 4
    [all...]
  /external/ltp/testcases/realtime/lib/
libstats.c 52 # define exp10(x) (exp((x) * log(10))) macro
235 (data->index + 1) < (long)exp10(quantiles->nines)) {
243 index = size - size / exp10(i);
255 fraction += 9 * exp10(i - 1);
  /prebuilts/go/darwin-x86/src/strconv/
extfloat.go 262 func (f *extFloat) AssignDecimal(mantissa uint64, exp10 int, neg bool, trunc bool, flt *floatInfo) (ok bool) {
276 i := (exp10 - firstPowerOfTen) / stepPowerOfTen
277 if exp10 < firstPowerOfTen || i >= len(powersOfTen) {
280 adjExp := (exp10 - firstPowerOfTen) % stepPowerOfTen
333 // f by an approximate power of ten 10^-exp, and returns exp10, so
334 // that f*10^exp10 has the same value as the old f, up to an ulp,
336 func (f *extFloat) frexp10() (exp10, index int) {
361 // in the desired range. This is multiplication by 10^-exp10.
368 func frexp10Many(a, b, c *extFloat) (exp10 int) {
369 exp10, i := c.frexp10(
    [all...]
  /prebuilts/go/linux-x86/src/strconv/
extfloat.go 262 func (f *extFloat) AssignDecimal(mantissa uint64, exp10 int, neg bool, trunc bool, flt *floatInfo) (ok bool) {
276 i := (exp10 - firstPowerOfTen) / stepPowerOfTen
277 if exp10 < firstPowerOfTen || i >= len(powersOfTen) {
280 adjExp := (exp10 - firstPowerOfTen) % stepPowerOfTen
333 // f by an approximate power of ten 10^-exp, and returns exp10, so
334 // that f*10^exp10 has the same value as the old f, up to an ulp,
336 func (f *extFloat) frexp10() (exp10, index int) {
361 // in the desired range. This is multiplication by 10^-exp10.
368 func frexp10Many(a, b, c *extFloat) (exp10 int) {
369 exp10, i := c.frexp10(
    [all...]
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_context.c 678 fixup_bytes(enum pipe_driver_query_type type, int position, uint64_t *exp10)
681 *exp10 = (*exp10 / 1000) * 1024;
692 uint64_t exp10; local
703 exp10 = 1;
704 for (i = 0; value > 9 * exp10; i++) {
705 exp10 *= 10;
706 fixup_bytes(pane->type, i + 1, &exp10);
709 leftmost_digit = DIV_ROUND_UP(value, exp10);
714 exp10 *= 10
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
mathcalls.h 121 __MATHCALL (exp10,, (_Mdouble_ __x));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
mathcalls.h 122 __MATHCALL (exp10,, (_Mdouble_ __x));
math-finite.h 79 /* exp10. */
80 extern double __REDIRECT_NTH (exp10, (double), __exp10_finite);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
mathcalls.h 122 __MATHCALL (exp10,, (_Mdouble_ __x));
math-finite.h 79 /* exp10. */
80 extern double __REDIRECT_NTH (exp10, (double), __exp10_finite);
  /external/llvm/lib/Analysis/
TargetLibraryInfo.cpp 68 TLI.setUnavailable(LibFunc::exp10);
291 // exp10 and exp10f are not available on OS X until 10.9 and iOS until 7.0
296 TLI.setUnavailable(LibFunc::exp10);
299 TLI.setAvailableWithName(LibFunc::exp10, "__exp10");
311 TLI.setUnavailable(LibFunc::exp10);
314 TLI.setAvailableWithName(LibFunc::exp10, "__exp10");
319 // exp10, exp10f, exp10l is available on Linux (GLIBC) but are extremely
321 // or we have a reasonable detection strategy, we cannot use exp10 reliably
326 TLI.setUnavailable(LibFunc::exp10);
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java 71 static native float exp10(float x); method in class:CoreMathVerifier
576 static private Target.Floaty exp10(double d, Target t) { method in class:CoreMathVerifier
579 exp10((float) in.mid()),
580 exp10((float) in.min()),
581 exp10((float) in.max()));
584 static private Target.Floaty exp10(float f, Target t) { method in class:CoreMathVerifier
587 exp10(in.mid32()),
588 exp10(in.min32()),
589 exp10(in.max32()));
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
math_fp16.rs 140 TEST_HN_FUNC_HN(exp10);
math.rs 292 TEST_FN_FUNC_FN(exp10);
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibonlysrc/com/android/rs/unittest/
apitest.rs 690 f = exp10(f);
691 f2 = exp10(f2);
692 f3 = exp10(f3);
693 f4 = exp10(f4);
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp     [all...]
  /frameworks/rs/script_api/
rs_math.spec 766 function: exp10
780 function: exp10
    [all...]
  /frameworks/rs/script_api/include/
rs_math.rsh     [all...]
  /prebuilts/sdk/renderscript/include/
rs_math.rsh     [all...]
  /external/eigen/unsupported/test/mpreal/
mpreal.h 353 friend const mpreal exp10(const mpreal& v, mp_rnd_t rnd_mode);
    [all...]
  /frameworks/rs/driver/runtime/
rs_cl.c 466 extern float __attribute__((overloadable)) exp10(float v) { function
469 FN_FUNC_FN(exp10)
1927 HN_FUNC_HN(exp10); variable
    [all...]
  /external/clang/lib/Headers/
opencl-c.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
opencl-c.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3362437/lib64/clang/3.8/include/
opencl-c.h     [all...]

Completed in 1510 milliseconds

1 2