Home
last modified time | relevance | path

Searched refs:exp (Results 1 – 14 of 14) sorted by relevance

/art/compiler/optimizing/
Dcode_generator_utils.cc55 const uint64_t exp = is_long ? (UINT64_C(1) << 63) : (UINT32_C(1) << 31); in CalculateMagicAndShiftForDivRem() local
61 uint64_t tmp = exp + sign_bit; in CalculateMagicAndShiftForDivRem()
63 uint64_t quotient1 = exp / abs_nc; in CalculateMagicAndShiftForDivRem()
64 uint64_t remainder1 = exp % abs_nc; in CalculateMagicAndShiftForDivRem()
65 uint64_t quotient2 = exp / abs_d; in CalculateMagicAndShiftForDivRem()
66 uint64_t remainder2 = exp % abs_d; in CalculateMagicAndShiftForDivRem()
/art/test/123-inline-execute2/
Dexpected.txt93 Math.exp(-3.0) = 0.049787068368
101 Math.exp(-2.0) = 0.135335283237
109 Math.exp(-1.0) = 0.367879441171
117 Math.exp(0.0) = 1.000000000000
125 Math.exp(1.0) = 2.718281828459
133 Math.exp(2.0) = 7.389056098931
141 Math.exp(3.0) = 20.085536923188
244 StrictMath.exp(-3.0) = 0.049787068367863944
252 StrictMath.exp(-2.0) = 0.1353352832366127
260 StrictMath.exp(-1.0) = 0.36787944117144233
[all …]
/art/test/1900-track-alloc/src/art/
DTest1900.java26 public static void checkLE(long exp, long o) { in checkLE() argument
27 if (exp > o) { in checkLE()
28 throw new Error("Expected: " + exp + " Got: " + o); in checkLE()
31 public static void checkEq(long exp, long o) { in checkEq() argument
32 if (exp != o) { in checkEq()
33 throw new Error("Expected: " + exp + " Got: " + o); in checkEq()
/art/test/968-default-partial-compile-gen/util-src/
Dgenerate_smali.py226 exp = self.farg.get_called()
227 if exp.is_empty():
229 elif exp.is_abstract():
231 elif exp.is_conflict():
234 assert exp.is_default()
236 result = exp.get_tree())
/art/runtime/interpreter/mterp/arm/
Dfloating_point.S351 adc r1, r1, #0 @ convert maxlong to minlong if exp negative
391 adc r1, r1, #0 @ convert maxlong to minlong if exp negative
/art/test/123-inline-execute2/src/
DMain.java59 + String.format(Locale.US, "%.12f", Math.exp(e))); in main()
100 System.out.println("StrictMath.exp(" + e + ") = " + StrictMath.exp(e)); in main()
/art/runtime/arch/x86/
Dentrypoints_init_x86.cc74 qpoints->pExp = exp; in InitEntryPoints()
/art/runtime/arch/x86_64/
Dentrypoints_init_x86_64.cc97 qpoints->pExp = exp; in InitEntryPoints()
/art/test/988-method-trace/src/art/
DTest988Intrinsics.java101 java.lang.Math.exp(0.0); in test()
/art/runtime/arch/arm/
Dentrypoints_init_arm.cc159 qpoints->pExp = exp; in InitEntryPoints()
/art/cmdline/
Dcmdline_parser_test.cc51 FloatingPoint exp(expected); in UsuallyEquals() local
55 return exp.AlmostEquals(act); in UsuallyEquals()
/art/runtime/arch/arm64/
Dentrypoints_init_arm64.cc173 qpoints->pExp = exp; in InitEntryPoints()
/art/test/988-method-trace/
Dexpected.txt459 ..=> public static double java.lang.Math.exp(double)
460 ..<= public static double java.lang.Math.exp(double) -> <class java.lang.Double: 1.0>
/art/runtime/interpreter/
Dunstarted_runtime.cc1729 result->SetD(exp(value.GetD())); in UnstartedJNIMathExp()