Searched refs:Uint64ToBigInt (Results 1 – 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_bigint_test.cpp | 530 HWTEST_F_L0(JSBigintTest, Uint64ToBigInt) in HWTEST_F_L0() argument 532 JSHandle<BigInt> resBigint1 = BigInt::Uint64ToBigInt(thread, ULLONG_MAX); in HWTEST_F_L0() 533 JSHandle<BigInt> resBigint2 = BigInt::Uint64ToBigInt(thread, UINT_MAX); in HWTEST_F_L0() 534 JSHandle<BigInt> resBigint3 = BigInt::Uint64ToBigInt(thread, 0); in HWTEST_F_L0() 721 JSHandle<BigInt> resBigint1 = BigInt::Uint64ToBigInt(thread, ULLONG_MAX); in HWTEST_F_L0() 722 JSHandle<BigInt> resBigint2 = BigInt::Uint64ToBigInt(thread, UINT_MAX); in HWTEST_F_L0() 723 JSHandle<BigInt> resBigint3 = BigInt::Uint64ToBigInt(thread, 0); in HWTEST_F_L0()
|
D | js_serializer_test.cpp | 782 JSHandle<BigInt> bigInt6 = BigInt::Uint64ToBigInt(thread, ULLONG_MAX); in BigIntTest() 783 JSHandle<BigInt> bigInt7 = BigInt::Uint64ToBigInt(thread, UINT_MAX); in BigIntTest() 1862 JSHandle<BigInt> bigInt6 = BigInt::Uint64ToBigInt(thread, ULLONG_MAX); in HWTEST_F_L0() 1863 JSHandle<BigInt> bigInt7 = BigInt::Uint64ToBigInt(thread, UINT_MAX); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_atomics.cpp | 503 return BigInt::Uint64ToBigInt(thread, result).GetTaggedValue(); in HandleWithBigUint64() 512 return BigInt::Uint64ToBigInt(thread, result).GetTaggedValue(); in HandleWithBigUint64()
|
D | builtins_arraybuffer.cpp | 538 return BigInt::Uint64ToBigInt(thread, pTmp).GetTaggedValue(); in GetValueFromBufferForBigInt()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_bigint.h | 108 static JSHandle<BigInt> Uint64ToBigInt(JSThread *thread, const uint64_t &number);
|
D | js_bigint.cpp | 548 JSHandle<BigInt> bigint = Uint64ToBigInt(thread, value); in Int64ToBigInt() 554 JSHandle<BigInt> BigInt::Uint64ToBigInt(JSThread *thread, const uint64_t &number) in Uint64ToBigInt() function in panda::ecmascript::BigInt 625 return Uint64ToBigInt(thread, 0); in CreateBigWords() 1493 JSHandle<BigInt> exponent = Uint64ToBigInt(thread, bit); in AsUintN()
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
D | jsnapi.cpp | 1111 JSHandle<BigInt> big = BigInt::Uint64ToBigInt(thread, input); in New()
|