Searched refs:Remainder (Results 1 - 4 of 4) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_bigint_test.cpp | 347 * @tc.name: Exponentiate & Multiply & Divide & Remainder 413 // Remainder in HWTEST_F_L0() 414 JSHandle<BigInt> remRes1 = BigInt::Remainder(thread, resBigint4, resBigint1); in HWTEST_F_L0() 416 JSHandle<BigInt> remRes2 = BigInt::Remainder(thread, resBigint4, resBigint2); in HWTEST_F_L0() 418 JSHandle<BigInt> remRes3 = BigInt::Remainder(thread, resBigint4, resBigint3); in HWTEST_F_L0() 420 JSHandle<BigInt> remRes4 = BigInt::Remainder(thread, baseBigint, zero); in HWTEST_F_L0() 423 JSHandle<BigInt> remRes5 = BigInt::Remainder(thread, expBigint2, baseBigint); in HWTEST_F_L0() 425 JSHandle<BigInt> remRes6 = BigInt::Remainder(thread, expBigint1, baseBigint); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_bigint.h | 83 static JSHandle<BigInt> Remainder(JSThread *thread, JSHandle<BigInt> n, JSHandle<BigInt> d);
|
H A D | js_bigint.cpp | 1495 JSHandle<BigInt> BigInt::Remainder(JSThread *thread, JSHandle<BigInt> n, JSHandle<BigInt> d) in Remainder() function in panda::ecmascript::BigInt 1524 JSHandle<BigInt> remainder = Remainder(thread, leftVal, rightVal); in FloorMod()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stubs-inl.h | 2022 return BigInt::Remainder(thread, leftBigint, rightBigint).GetTaggedValue(); in RuntimeMod2()
|
Completed in 12 milliseconds