Searched refs:pow (Results 1 – 11 of 11) sorted by relevance
/art/test/123-inline-execute2/ |
D | expected.txt | 95 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/ |
D | Main.java | 63 + 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/ |
D | entrypoints_init_x86.cc | 71 qpoints->pPow = pow; in InitEntryPoints()
|
/art/runtime/arch/x86_64/ |
D | entrypoints_init_x86_64.cc | 94 qpoints->pPow = pow; in InitEntryPoints()
|
/art/runtime/arch/arm/ |
D | entrypoints_init_arm.cc | 156 qpoints->pPow = pow; in InitEntryPoints()
|
/art/runtime/arch/arm64/ |
D | entrypoints_init_arm64.cc | 170 qpoints->pPow = pow; in InitEntryPoints()
|
/art/runtime/arch/mips64/ |
D | entrypoints_init_mips64.cc | 169 qpoints->pPow = pow; in InitEntryPoints()
|
/art/compiler/optimizing/ |
D | induction_var_range.cc | 60 int64_t pow = 1; in IntPow() local 63 pow = SafeMul(pow, b, overflow); in IntPow() 70 return pow; in IntPow()
|
/art/runtime/arch/mips/ |
D | entrypoints_init_mips.cc | 356 qpoints->pPow = pow; in InitEntryPoints()
|
/art/tools/jfuzz/ |
D | jfuzz.cc | 767 uint64_t p = pow(array_size_, array_dim_); in emitArrayInit()
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 1166 result->SetD(pow(shadow_frame->GetVRegDouble(arg_offset), in UnstartedMathPow()
|