Home
last modified time | relevance | path

Searched refs:pow (Results 1 – 11 of 11) sorted by relevance

/art/test/123-inline-execute2/
Dexpected.txt95 Math.pow(-3.0, -2.0) = 0.111111111111
103 Math.pow(-2.0, -1.0) = -0.500000000000
111 Math.pow(-1.0, 0.0) = 1.000000000000
119 Math.pow(0.0, 1.0) = 0.000000000000
127 Math.pow(1.0, 2.0) = 1.000000000000
135 Math.pow(2.0, 3.0) = 8.000000000000
143 Math.pow(3.0, 4.0) = 81.000000000000
246 StrictMath.pow(-3.0, -2.0) = 0.1111111111111111
254 StrictMath.pow(-2.0, -1.0) = -0.5
262 StrictMath.pow(-1.0, 0.0) = 1.0
[all …]
/art/test/123-inline-execute2/src/
DMain.java63 + String.format(Locale.US, "%.12f", Math.pow(e, e + 1.0))); in main()
103 + StrictMath.pow(e, e + 1.0)); in main()
/art/runtime/arch/x86/
Dentrypoints_init_x86.cc71 qpoints->pPow = pow; in InitEntryPoints()
/art/runtime/arch/x86_64/
Dentrypoints_init_x86_64.cc94 qpoints->pPow = pow; in InitEntryPoints()
/art/runtime/arch/arm/
Dentrypoints_init_arm.cc156 qpoints->pPow = pow; in InitEntryPoints()
/art/runtime/arch/arm64/
Dentrypoints_init_arm64.cc170 qpoints->pPow = pow; in InitEntryPoints()
/art/runtime/arch/mips64/
Dentrypoints_init_mips64.cc169 qpoints->pPow = pow; in InitEntryPoints()
/art/compiler/optimizing/
Dinduction_var_range.cc60 int64_t pow = 1; in IntPow() local
63 pow = SafeMul(pow, b, overflow); in IntPow()
70 return pow; in IntPow()
/art/runtime/arch/mips/
Dentrypoints_init_mips.cc356 qpoints->pPow = pow; in InitEntryPoints()
/art/tools/jfuzz/
Djfuzz.cc767 uint64_t p = pow(array_size_, array_dim_); in emitArrayInit()
/art/runtime/interpreter/
Dunstarted_runtime.cc1166 result->SetD(pow(shadow_frame->GetVRegDouble(arg_offset), in UnstartedMathPow()