Home
last modified time | relevance | path

Searched refs:Uint32ToBigInt (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/test/fuzztest/builtinsarraybuffergetvaluefrombufferforbigint_fuzzer/
Dbuiltinsarraybuffergetvaluefrombufferforbigint_fuzzer.cpp50 JSHandle<BigInt> bigIntNum = BigInt::Uint32ToBigInt(thread, input); in BuiltinsArrayBufferGetValueFromBufferForBigIntFuzzTest()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_bigint_test.cpp76 JSHandle<BigInt> zero = BigInt::Uint32ToBigInt(thread, 0); in HWTEST_F_L0()
652 HWTEST_F_L0(JSBigintTest, Uint32ToBigInt) in HWTEST_F_L0() argument
654 …JSHandle<BigInt> resBigint1 = BigInt::Uint32ToBigInt(thread, std::numeric_limits<uint32_t>::max()); in HWTEST_F_L0()
655 …JSHandle<BigInt> resBigint2 = BigInt::Uint32ToBigInt(thread, std::numeric_limits<uint32_t>::min()); in HWTEST_F_L0()
656 JSHandle<BigInt> resBigint3 = BigInt::Uint32ToBigInt(thread, 0); in HWTEST_F_L0()
Djs_serializer_test.cpp780 JSHandle<BigInt> bigInt4 = BigInt::Uint32ToBigInt(thread, 0); // 0 : test case in BigIntTest()
784 … JSHandle<BigInt> bigInt8 = BigInt::Uint32ToBigInt(thread, std::numeric_limits<uint32_t>::max()); in BigIntTest()
785 … JSHandle<BigInt> bigInt9 = BigInt::Uint32ToBigInt(thread, std::numeric_limits<uint32_t>::min()); in BigIntTest()
1860 JSHandle<BigInt> bigInt4 = BigInt::Uint32ToBigInt(thread, 0); // 0 : test case in HWTEST_F_L0()
1864 JSHandle<BigInt> bigInt8 = BigInt::Uint32ToBigInt(thread, std::numeric_limits<uint32_t>::max()); in HWTEST_F_L0()
1865 JSHandle<BigInt> bigInt9 = BigInt::Uint32ToBigInt(thread, std::numeric_limits<uint32_t>::min()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
Djs_bigint.h106 static JSHandle<BigInt> Uint32ToBigInt(JSThread *thread, const uint32_t &number);
Djs_bigint.cpp531 JSHandle<BigInt> BigInt::Uint32ToBigInt(JSThread *thread, const uint32_t &number) in Uint32ToBigInt() function in panda::ecmascript::BigInt
1392 remainder.Update(Uint32ToBigInt(thread, r)); in DivideAndRemainderWithUint32Divisor()
/arkcompiler/ets_runtime/ecmascript/base/
Dnumber_helper.cpp779 return BigInt::Uint32ToBigInt(thread, 0).GetTaggedValue(); in StringToBigInt()