Home
last modified time | relevance | path

Searched defs:bigint (Results 1 - 14 of 14) sorted by relevance

/arkcompiler/ets_runtime/test/fuzztest/biginttoint64_fuzzer/
H A Dbiginttoint64_fuzzer.cpp42 Local<BigIntRef> bigint = BigIntRef::New(vm, input); in BigIntToInt64FuzzTest() local
/arkcompiler/ets_runtime/test/fuzztest/biginttouint64_fuzzer/
H A Dbiginttouint64_fuzzer.cpp42 Local<BigIntRef> bigint = BigIntRef::New(vm, input); in BigIntToUint64FuzzTest() local
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/types/
H A Dremote_object.cpp35 std::string RemoteObject::GetDescription(const RemoteObjectType::BigIntT &bigint) in GetDescription() argument
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_bigint.cpp66 JSHandle<JSTaggedValue> bigint = GetCallArg(argv, 1); in AsUintN() local
85 JSHandle<JSTaggedValue> bigint = GetCallArg(argv, 1); in AsIntN() local
[all...]
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
H A Dbuiltins_bigint_test.cpp413 JSHandle<JSTaggedValue> bigint; HWTEST_F_L0() local
[all...]
/arkcompiler/ets_frontend/ets2panda/test/unit/public/
H A Dast_builder_test.cpp132 auto bigint = BigIntLiteralBuilder(Allocator()).SetValue("123").Build(); in TEST_F() local
/arkcompiler/ets_runtime/ecmascript/
H A Djs_tagged_value.cpp67 BigInt *bigint = BigInt::Cast(GetTaggedObject()); in ToBoolean() local
543 JSHandle<BigInt> bigint = JSHandle<BigInt>::Cast(x); in EqualBigInt() local
691 JSHandle<BigInt> bigint = JSHandle<BigInt>::Cast(primX); in Compare() local
H A Djs_bigint.cpp70 JSHandle<BigInt> bigint = CreateBigint(thread, 3); // 3:The number of digits in an object of type BigInt in CreateUint64MaxBigInt() local
80 JSHandle<BigInt> bigint = CreateBigint(thread, 2); // 2:The number of digits in an object of type BigInt in CreateInt64MaxBigInt() local
111 JSHandle<BigInt> bigint; in SetBigInt() local
176 GetBinary(const BigInt *bigint) GetBinary() argument
204 JSHandle<BigInt> bigint = factory->NewBigInt(length); CreateBigint() local
256 JSHandle<BigInt> bigint = BigInt::CreateBigint(thread, maxLen); BitwiseOp() local
366 BitwiseSubOne(JSThread *thread, JSHandle<BigInt> bigint, uint32_t maxLen) BitwiseSubOne() argument
384 BitwiseAddOne(JSThread *thread, JSHandle<BigInt> bigint) BitwiseAddOne() argument
478 ToString(JSThread *thread, JSHandle<BigInt> bigint, uint32_t conversionToRadix) ToString() argument
520 JSHandle<BigInt> bigint = CreateBigint(thread, mayNeedLen); DoubleToBigInt() local
548 JSHandle<BigInt> bigint = CreateBigint(thread, 1); Int32ToBigInt() local
564 JSHandle<BigInt> bigint = CreateBigint(thread, 1); Uint32ToBigInt() local
587 JSHandle<BigInt> bigint = CreateBigint(thread, 2); // 2 : one int64_t bits need two uint32_t bits Uint64ToBigInt() local
618 BigIntToInt64(JSThread *thread, JSHandle<JSTaggedValue> bigint, int64_t *cValue, bool *lossless) BigIntToInt64() argument
641 BigIntToUint64(JSThread *thread, JSHandle<JSTaggedValue> bigint, uint64_t *cValue, bool *lossless) BigIntToUint64() argument
676 JSHandle<BigInt> bigint = CreateBigint(thread, needLen); CreateBigWords() local
755 JSHandle<BigInt> bigint = BigInt::CreateBigint(thread, x->GetLength() + 1); BigintAdd() local
790 JSHandle<BigInt> bigint = BigInt::CreateBigint(thread, x->GetLength()); BigintSub() local
890 RightShift(JSHandle<BigInt> bigint, JSHandle<BigInt> x, uint32_t digitMove, uint32_t bitsMove) RightShift() argument
955 JSHandle<BigInt> bigint = CreateBigint(thread, needLen); RightShiftHelper() local
989 JSHandle<BigInt> bigint = CreateBigint(thread, needLen); LeftShiftHelper() local
1084 JSHandle<BigInt> bigint = CreateBigint(thread, needLength); Exponentiate() local
1144 JSHandle<BigInt> bigint = BigInt::CreateBigint(thread, needLength); Multiply() local
1273 FormatLeftShift(JSThread *thread, uint32_t shift, JSHandle<BigInt> bigint, bool neeedAddOne) FormatLeftShift() argument
1304 UnformattedRightShift(JSHandle<BigInt> bigint, uint32_t shift) UnformattedRightShift() argument
1532 AsUintN(JSThread *thread, JSTaggedNumber &bits, JSHandle<BigInt> bigint) AsUintN() argument
1553 AsintN(JSThread *thread, JSTaggedNumber &bits, JSHandle<BigInt> bigint) AsintN() argument
1609 BigIntToNumber(JSHandle<BigInt> bigint) BigIntToNumber() argument
1680 CompareToBitsLen(JSHandle<BigInt> bigint, int numBitLen, int &leadingZeros) CompareToBitsLen() argument
1698 CompareWithNumber(JSHandle<BigInt> bigint, JSHandle<JSTaggedValue> number) CompareWithNumber() argument
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dnative_inline_lowering.cpp729 GateRef bigint = acc_.GetValueIn(gate, firstParam + 1); in TryInlineBigIntAsIntN() local
H A Dnumber_speculative_retype.cpp1947 GateRef bigint = acc_.GetValueIn(gate, 1); in VisitBigIntAsIntN() local
H A Dtyped_native_inline_lowering.cpp1257 GateRef bigint = acc_.GetValueIn(gate, 1); in LowerBigIntAsIntN() local
[all...]
/arkcompiler/ets_runtime/ecmascript/tests/
H A Djs_bigint_test.cpp69 JSHandle<BigInt> bigint = BigInt::CreateBigint(thread, size); in HWTEST_F_L0() local
185 JSHandle<BigInt> bigint = BigIntHelper::SetBigInt(thread, bigintStr4, BigInt::BINARY); in HWTEST_F_L0() local
[all...]
/arkcompiler/ets_runtime/ecmascript/stubs/
H A Druntime_stubs.cpp2679 JSTaggedValue bigint = GetArg(argv, argc, 1); // 1: means the first parameter in DEF_RUNTIME_STUBS() local
2687 JSTaggedValue bigint = GetArg(argv, argc, 1); // 1: means the first parameter in DEF_RUNTIME_STUBS() local
/arkcompiler/ets_runtime/ecmascript/napi/
H A Djsnapi_expo.cpp2264 JSHandle<JSTaggedValue> bigint = JSHandle<JSTaggedValue>::Cast(big); in New() local
2275 JSHandle<JSTaggedValue> bigint = JSHandle<JSTaggedValue>::Cast(big); in New() local
2286 JSHandle<JSTaggedValue> bigint = JSHandle<JSTaggedValue>::Cast(big); in CreateBigWords() local

Completed in 39 milliseconds