/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_bigint_test.cpp | 162 JSHandle<BigInt> maxSafeInt = BigIntHelper::SetBigInt(thread, maxSafeIntStr, BigInt::BINARY); in HWTEST_F_L0() 163 JSHandle<BigInt> maxSafeIntPlusOne = BigIntHelper::SetBigInt(thread, maxSafeIntPlusOneStr, BigInt::BINARY); in HWTEST_F_L0() 164 JSHandle<BigInt> bigint1 = BigIntHelper::SetBigInt(thread, bigintStr1, BigInt::BINARY); in HWTEST_F_L0() 165 JSHandle<BigInt> bigint2 = BigIntHelper::SetBigInt(thread, bigintStr2, BigInt::BINARY); in HWTEST_F_L0() 185 JSHandle<BigInt> bigint = BigIntHelper::SetBigInt(thread, bigintStr4, BigInt::BINARY); in HWTEST_F_L0() 193 JSHandle<BigInt> bigint5 = BigIntHelper::SetBigInt(thread, bigintStr5, BigInt::BINARY); in HWTEST_F_L0() 198 JSHandle<BigInt> bigint6 = BigIntHelper::SetBigInt(thread, bigintStr6, BigInt::BINARY); in HWTEST_F_L0() 215 JSHandle<BigInt> bigint7 = BigIntHelper::SetBigInt(thread, bigintStr7, BigInt::BINARY); in HWTEST_F_L0() 226 JSHandle<BigInt> bigint8 = BigIntHelper::SetBigInt(thread, bigintStr8, BigInt::BINARY); in HWTEST_F_L0() 234 JSHandle<BigInt> bigint9 = BigIntHelper::SetBigInt(thread, bigintStr9, BigInt::BINARY); in HWTEST_F_L0() [all...] |
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
H A D | heap_profiler_interface.h | 29 enum class DumpFormat { JSON, BINARY, OTHER }; member in panda::ecmascript::DumpFormat 31 DumpFormat dumpFormat; // dumpformat like JSON BINARY and OTHER
|
H A D | heap_profiler.cpp | 160 if (dumpOption.isDumpOOM && dumpOption.dumpFormat == DumpFormat::BINARY) { in DumpHeapSnapshot() 816 case DumpFormat::BINARY: in GenDumpFileName()
|
/arkcompiler/toolchain/websocket/ |
H A D | web_socket_frame.h | 26 BINARY = 0x2, member in OHOS::ArkCompiler::Toolchain::FrameType
|
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | number_helper.h | 39 static constexpr uint8_t BINARY = 2; member
|
H A D | number_helper.cpp | 957 radix = BINARY; 1204 radix = BINARY;
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/ |
H A D | heap_tracker_second_test.cpp | 179 dumpOption.dumpFormat = DumpFormat::BINARY; in HWTEST_F_L0()
|
H A D | heap_dump_test.cpp | 107 dumpOption.dumpFormat = DumpFormat::BINARY; in GenerateRawHeapSnashot()
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_bigint_test.cpp | 436 str = BigInt::ToString(thread, JSHandle<BigInt>::Cast(bigint), BigInt::BINARY);
in HWTEST_F_L0() 443 str = BigInt::ToString(thread, JSHandle<BigInt>::Cast(bigint), BigInt::BINARY);
in HWTEST_F_L0()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/helpers/ |
H A D | ets_intrinsics_helpers.h | 38 inline constexpr uint8_t BINARY = 2; member
|
H A D | ets_intrinsics_helpers.cpp | 164 radix = BINARY; in StringToDouble()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_bigint.h | 38 static constexpr uint32_t BINARY = 2; // 2 : binary member in panda::ecmascript::BigInt
|
H A D | js_bigint.cpp | 105 if (currentRadix != BigInt::BINARY) { in SetBigInt() 106 binaryStr = Conversion(numStr.substr(flag), BigInt::BINARY, currentRadix); in SetBigInt() 488 BigIntHelper::Conversion(BigIntHelper::GetBinary(this), conversionToRadix, BINARY); in ToStdString()
|
/arkcompiler/ets_runtime/ecmascript/mem/ |
H A D | heap.cpp | 679 dumpOption.dumpFormat = DumpFormat::BINARY; in DumpHeapSnapshotBeforeOOM() 1534 dumpOption.dumpFormat = DumpFormat::BINARY; in DumpHeapSnapshotBeforeOOM() 2700 dumpOption.dumpFormat = DumpFormat::BINARY; in ThresholdReachedDump()
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
H A D | dfx_jsnapi.cpp | 124 if (dumpOption.isDumpOOM && dumpOption.dumpFormat == DumpFormat::BINARY) { in DumpHeapSnapshot()
|