Searched refs:BINARY (Results 1 – 9 of 9) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_bigint_test.cpp | 186 JSHandle<BigInt> maxSafeInt = BigIntHelper::SetBigInt(thread, maxSafeIntStr, BigInt::BINARY); in HWTEST_F_L0() 187 …<BigInt> maxSafeIntPlusOne = BigIntHelper::SetBigInt(thread, maxSafeIntPlusOneStr, BigInt::BINARY); in HWTEST_F_L0() 188 JSHandle<BigInt> bigint1 = BigIntHelper::SetBigInt(thread, bigintStr1, BigInt::BINARY); in HWTEST_F_L0() 189 JSHandle<BigInt> bigint2 = BigIntHelper::SetBigInt(thread, bigintStr2, BigInt::BINARY); in HWTEST_F_L0() 209 JSHandle<BigInt> bigint = BigIntHelper::SetBigInt(thread, bigintStr4, BigInt::BINARY); in HWTEST_F_L0() 217 JSHandle<BigInt> bigint5 = BigIntHelper::SetBigInt(thread, bigintStr5, BigInt::BINARY); in HWTEST_F_L0() 222 JSHandle<BigInt> bigint6 = BigIntHelper::SetBigInt(thread, bigintStr6, BigInt::BINARY); in HWTEST_F_L0() 239 JSHandle<BigInt> bigint7 = BigIntHelper::SetBigInt(thread, bigintStr7, BigInt::BINARY); in HWTEST_F_L0() 250 JSHandle<BigInt> bigint8 = BigIntHelper::SetBigInt(thread, bigintStr8, BigInt::BINARY); in HWTEST_F_L0() 258 JSHandle<BigInt> bigint9 = BigIntHelper::SetBigInt(thread, bigintStr9, BigInt::BINARY); in HWTEST_F_L0() [all …]
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
D | heap_profiler_interface.h | 30 enum class DumpFormat { JSON, BINARY, OTHER }; enumerator
|
D | heap_profiler.cpp | 237 case DumpFormat::BINARY: in GenDumpFileName()
|
/arkcompiler/ets_runtime/ecmascript/base/ |
D | number_helper.h | 38 static constexpr uint8_t BINARY = 2; variable
|
D | number_helper.cpp | 511 radix = BINARY; in StringToDouble() 752 radix = BINARY; in StringToBigInt()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_bigint.h | 38 static constexpr uint32_t BINARY = 2; // 2 : binary variable
|
D | js_bigint.cpp | 95 if (currentRadix != BigInt::BINARY) { in SetBigInt() 96 binaryStr = Conversion(numStr.substr(flag), BigInt::BINARY, currentRadix); in SetBigInt() 461 BigIntHelper::Conversion(BigIntHelper::GetBinary(this), conversionToRadix, BINARY); in ToStdString()
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
D | builtins_bigint_test.cpp | 562 str = BigInt::ToString(thread, JSHandle<BigInt>::Cast(bigint), BigInt::BINARY); in HWTEST_F_L0() 569 str = BigInt::ToString(thread, JSHandle<BigInt>::Cast(bigint), BigInt::BINARY); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/ |
D | heap_tracker_test.cpp | 365 heapProfile->DumpHeapSnapshot(DumpFormat::BINARY, &stream, &testProgress, true, true, false); in HWTEST_F_L0()
|