/arkcompiler/ets_runtime/test/fuzztest/biginttouint64_fuzzer/ |
H A D | biginttouint64_fuzzer.cpp | 46 bigint->BigIntToUint64(vm, &cValue, &lossless);
in BigIntToUint64FuzzTest()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_bigint_test.cpp | 690 * @tc.name: BigIntToUint64 695 HWTEST_F_L0(JSBigintTest, BigIntToUint64) in HWTEST_F_L0() 703 BigInt::BigIntToUint64(thread, JSHandle<JSTaggedValue>(resBigint1), &cValue, &lossless); in HWTEST_F_L0() 706 BigInt::BigIntToUint64(thread, JSHandle<JSTaggedValue>(resBigint2), &cValue, &lossless); in HWTEST_F_L0() 709 BigInt::BigIntToUint64(thread, JSHandle<JSTaggedValue>(resBigint3), &cValue, &lossless); in HWTEST_F_L0() 718 BigInt::BigIntToUint64(thread, JSHandle<JSTaggedValue>(resBigint4), &cValue, &lossless); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_arraybuffer.cpp | 679 BigInt::BigIntToUint64(thread, val, reinterpret_cast<uint64_t *>(&value), &lossless); in SetValueInBufferForBigInt() 703 BigInt::BigIntToUint64(thread, valHandle, reinterpret_cast<uint64_t *>(&value), &lossless); in SetValueInBufferForBigInt() 918 BigInt::BigIntToUint64(thread, valHandle, reinterpret_cast<uint64_t *>(&value), &lossless); in FastSetValueInBufferForBigInt()
|
H A D | builtins_atomics.cpp | 364 BigInt::BigIntToUint64(thread, value, &val, &lossless); in AtomicReadModifyWriteCase() 558 BigInt::BigIntToUint64(thread, newValue, &newVal, &lossless); in HandleWithBigUint64()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_bigint.h | 113 static void BigIntToUint64(JSThread *thread, JSHandle<JSTaggedValue> bigint, uint64_t *cValue, bool *lossless);
|
H A D | js_bigint.cpp | 641 void BigInt::BigIntToUint64(JSThread *thread, JSHandle<JSTaggedValue> bigint, uint64_t *cValue, bool *lossless) in BigIntToUint64() function in panda::ecmascript::BigInt
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
H A D | jsnapi_first_tests.cpp | 1866 * @tc.name: BigIntToUint64 1872 HWTEST_F_L0(JSNApiTests, BigIntToUint64) in HWTEST_F_L0() 1881 maxBigintUint64->BigIntToUint64(vm_, &num, &lossless); in HWTEST_F_L0()
|
H A D | jsnapi_sample.cpp | 133 uint64tObject->BigIntToUint64(vm_, &ucValue1, &uLossless); in HWTEST_F_L0() 167 int64tObject->BigIntToUint64(vm_, &icValue1, &iLossless); in HWTEST_F_L0()
|
H A D | ffi_workload.cpp | 7703 maxBigintUint64->BigIntToUint64(vm_, &toNum, &lossless); in HWTEST_F_L0() 7706 TEST_TIME(BigIntRef::BigIntToUint64); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/napi/include/ |
H A D | jsnapi_expo.h | 1012 void BigIntToUint64(const EcmaVM *vm, uint64_t *value, bool *lossless);
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
H A D | jsnapi_expo.cpp | 2301 void BigIntRef::BigIntToUint64(const EcmaVM *vm, uint64_t *value, bool *lossless) in BigIntToUint64() function in panda::BigIntRef 2309 BigInt::BigIntToUint64(thread, bigintVal, value, lossless); in BigIntToUint64()
|