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

1 2 3 4 5

  /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);
  /external/ltp/testcases/realtime/m4/
ltp-exp10.m4 25 [Define to 1 if you have 'exp10' function.])
26 AC_MSG_CHECKING([for exp10])
33 exp10(val);
  /external/llvm/test/Transforms/InstCombine/
pow-1.ll 4 ; RUN: opt -instcombine -S < %s -mtriple=x86_64-apple-macosx10.9 | FileCheck %s --check-prefix=CHECK-EXP10
5 ; RUN: opt -instcombine -S < %s -mtriple=arm-apple-ios7.0 | FileCheck %s --check-prefix=CHECK-EXP10
6 ; RUN: opt -instcombine -S < %s -mtriple=x86_64-apple-macosx10.8 | FileCheck %s --check-prefix=CHECK-NO-EXP10
7 ; RUN: opt -instcombine -S < %s -mtriple=arm-apple-ios6.0 | FileCheck %s --check-prefix=CHECK-NO-EXP10
8 ; RUN: opt -instcombine -S < %s -mtriple=x86_64-netbsd | FileCheck %s --check-prefix=CHECK-NO-EXP10
9 ; RUN: opt -instcombine -S < %s -mtriple=arm-apple-tvos9.0 | FileCheck %s --check-prefix=CHECK-EXP10
10 ; RUN: opt -instcombine -S < %s -mtriple=arm-apple-watchos2.0 | FileCheck %s --check-prefix=CHECK-EXP10
178 ; CHECK-EXP10: [[EXP10F:%[_a-z0-9]+]] = call float @__exp10f(float %x) [[NUW_RO:#[0-9]+]]
180 ; CHECK-EXP10: ret float [[EXP10F]]
181 ; CHECK-NO-EXP10: call float @pow
    [all...]
double-float-shrink-1.ll 169 %call = call fast double @exp10(double %conv)
173 ; CHECK: call fast double @exp10(double %conv)
178 %call = call fast double @exp10(double %conv)
181 ; CHECK: call fast double @exp10(double %conv)
403 declare double @exp10(double)
  /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...]
  /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/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);
  /frameworks/compile/slang/tests/P_math_fp/
math_fp.rs 96 TEST_FUNC_1(exp10);
  /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.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
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/
math-finite.h 79 /* exp10. */
80 extern double __REDIRECT_NTH (exp10, (double), __exp10_finite);
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVExtInst.h 82 add(OpenCLLIB::Exp10, "exp10");
OpenCL.std.h 57 Exp10 = 21,
  /external/shaderc/spirv-headers/include/spirv/1.0/
OpenCL.std.h 57 Exp10 = 21,
  /external/shaderc/spirv-headers/include/spirv/1.1/
OpenCL.std.h 57 Exp10 = 21,
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/external/spirv-headers/include/spirv/1.0/
OpenCL.std.h 53 Exp10 = 21,
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/external/spirv-headers/include/spirv/1.1/
OpenCL.std.h 53 Exp10 = 21,
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/external/spirv-headers/include/spirv/1.2/
OpenCL.std.h 53 Exp10 = 21,
  /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...]
  /frameworks/rs/tests/java_api/RsTest_11/src/com/android/rs/test/
math.rs 136 TEST_FN_FUNC_FN(exp10);
  /frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
math.rs.bak 255 TEST_FN_FUNC_FN(exp10);
  /external/llvm/include/llvm/Analysis/
TargetLibraryInfo.def 401 /// double exp10(double x);
402 TLI_DEFINE_ENUM_INTERNAL(exp10)
403 TLI_DEFINE_STRING_INTERNAL("exp10")
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
TargetLibraryInfo.def 401 /// double exp10(double x);
402 TLI_DEFINE_ENUM_INTERNAL(exp10)
403 TLI_DEFINE_STRING_INTERNAL("exp10")
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
TargetLibraryInfo.def 401 /// double exp10(double x);
402 TLI_DEFINE_ENUM_INTERNAL(exp10)
403 TLI_DEFINE_STRING_INTERNAL("exp10")
    [all...]

Completed in 1965 milliseconds

1 2 3 4 5