Searched refs:Exponentiate (Results 1 - 5 of 5) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_bigint_test.cpp | 347 * @tc.name: Exponentiate & Multiply & Divide & Remainder 370 // Exponentiate in HWTEST_F_L0() 371 JSHandle<BigInt> expRes1 = BigInt::Exponentiate(thread, baseBigint, expBigint1); in HWTEST_F_L0() 373 JSHandle<BigInt> expRes2 = BigInt::Exponentiate(thread, baseBigint, expBigint2); in HWTEST_F_L0() 375 JSHandle<BigInt> expRes3 = BigInt::Exponentiate(thread, baseBigint, resBigint5); in HWTEST_F_L0() 594 JSHandle<BigInt> uint64MaxBigint1 = BigInt::Exponentiate(thread, base, exponent); in HWTEST_F_L0() 597 JSHandle<BigInt> int64MaxBigint1 = BigInt::Exponentiate(thread, base, exponentone); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_bigint.h | 65 static JSHandle<BigInt> Exponentiate(JSThread *thread, JSHandle<BigInt> base, JSHandle<BigInt> exponent);
|
H A D | js_bigint.cpp | 1056 JSHandle<BigInt> BigInt::Exponentiate(JSThread *thread, JSHandle<BigInt> base, JSHandle<BigInt> exponent) in Exponentiate() function in panda::ecmascript::BigInt 1548 JSHandle<BigInt> tValue = Exponentiate(thread, base, exponent); in AsUintN() 1570 JSHandle<BigInt> tValue = Exponentiate(thread, base, exp); in AsintN() 1573 JSHandle<BigInt> resValue = Exponentiate(thread, base, exponent); in AsintN()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_math.cpp | 615 return BigInt::Exponentiate(thread, bigBaseVale, bigExponentValue).GetTaggedValue(); in Pow()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stubs-inl.h | 95 return BigInt::Exponentiate(thread, bigBaseVale, bigExponentValue).GetTaggedValue(); in RuntimeExp()
|
Completed in 13 milliseconds