/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | bit_field.h | 27 template <typename T, size_t START, size_t BITS_NUM = 1> 31 static_assert(START < sizeof(uint64_t) * BITS_PER_BYTE, "Invalid position"); 33 static_assert(BITS_NUM + START <= sizeof(uint64_t) * BITS_PER_BYTE, "Invalid position + size"); 37 static constexpr unsigned START_BIT = START; 38 static constexpr unsigned END_BIT = START + BITS_NUM; 64 using NextField = BitField<T2, START + BITS_NUM, BITS_NUM2>; 70 using NextFlag = BitField<bool, START + BITS_NUM, 1>; 86 return MaxValue() << START; 112 return static_cast<T>((value >> START) & MaxValue()); 121 return (static_cast<uint64_t>(value) << START); [all...] |
H A D | cframe_layout.h | 29 template <ssize_t START, ssize_t SIZE> 34 using NextStackRegion = StackRegion<START + SIZE, SZ>; 36 using NextStackSlot = StackRegion<START + SIZE, 1>; 40 return START; in Start() 53 return fl.template GetFrameSize<CFrameLayoutT::OffsetUnit::SLOTS>() - START - 2U; in GetOffsetFromSpInSlots()
|
/arkcompiler/runtime_core/libpandabase/tests/ |
H A D | mem_range_test.cpp | 66 constexpr uintptr_t START = 10, END = 10000; in TEST() local 69 auto mem_range = panda::mem::MemRange(START, END); in TEST() 72 ASSERT_EQ(START, mem_range.GetStartAddress()); in TEST() 76 ASSERT_TRUE(mem_range.IsAddressInRange(START)); in TEST() 78 ASSERT_TRUE(mem_range.IsAddressInRange((START + END) / 2)); in TEST() 82 ASSERT_FALSE(mem_range.IsAddressInRange(START - 1)); in TEST() 87 auto mem_range_with_one_element = panda::mem::MemRange(START, START); in TEST()
|
/arkcompiler/runtime_core/static_core/libpandabase/tests/ |
H A D | mem_range_test.cpp | 71 constexpr uintptr_t START = 10; in TEST() local 76 auto memRange = ark::mem::MemRange(START, END); in TEST() 79 ASSERT_EQ(START, memRange.GetStartAddress()); in TEST() 83 ASSERT_TRUE(memRange.IsAddressInRange(START)); in TEST() 85 ASSERT_TRUE(memRange.IsAddressInRange((START + END) / 2U)); in TEST() 89 ASSERT_FALSE(memRange.IsAddressInRange(START - 1L)); in TEST() 94 auto memRangeWithOneElement = ark::mem::MemRange(START, START); in TEST()
|
/arkcompiler/runtime_core/static_core/verification/value/ |
H A D | origin.h | 28 enum class OriginType { START, INSTRUCTION }; member in ark::verifier::OriginType 30 using OriginTypeTag = TagForEnum<OriginType, OriginType::START, OriginType::INSTRUCTION>; 52 return Base::GetTag<0>() == OriginType::START; in AtStart()
|
H A D | abstract_typed_value.h | 58 : value_ {std::move(value)}, type_ {type}, origin_ {OriginType::START, n} in AbstractTypedValue() member in ark::verifier::AbstractTypedValue::OriginType
|
/arkcompiler/runtime_core/static_core/verification/util/parser/ |
H A D | parser.h | 57 enum class Action { START, PARSED, CANCEL }; member in ark::parser::Action 162 typename IfType<decltype(f(Action::START, RefTo<Context>(), RefTo<Iter>(), ValOf<Iter>(), ValOf<Iter>())), bool, 167 if (!f(Action::START, c, start, start, end)) { 189 typename IfType<decltype(f(Action::START, RefTo<Context>(), RefTo<Iter>(), ValOf<Iter>())), bool, 194 if (!f(Action::START, c, start, start)) { 215 auto operator|=(F f) const -> typename IfType<decltype(f(Action::START, RefTo<Context>(), RefTo<Iter>())), bool, 220 if (!f(Action::START, c, start)) { 242 typename IfType<decltype(f(Action::START, RefTo<Context>())), bool, Next<type_prod<op_action, F>>>::Type 246 if (!f(Action::START, c)) {
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | cframe_layout.h | 29 template <ssize_t START, ssize_t SIZE> 34 using NextStackRegion = StackRegion<START + SIZE, SZ>; 36 using NextStackSlot = StackRegion<START + SIZE, 1>; 40 return START; in Start() 53 return fl.template GetFrameSize<CFrameLayoutT::SLOTS>() - START - 2U; in GetOffsetFromSpInSlots()
|
/arkcompiler/ets_runtime/ecmascript/mem/ |
H A D | gc_stats.h | 40 START, member in panda::ecmascript::GCType 222 void PrintGCSummaryStatistic(GCType type = GCType::START); 303 GCType gcType_ {GCType::START};
|
H A D | gc_stats.cpp | 305 if (type != GCType::START && !CheckIfNeedPrint(type)) { in PrintGCSummaryStatistic() 308 type = type == GCType::START ? gcType_ : type; in PrintGCSummaryStatistic()
|
/arkcompiler/toolchain/tooling/agent/ |
H A D | tracing_impl.cpp | 41 case Method::START: in Dispatch() 61 return Method::START; in GetMethodEnum()
|
H A D | profiler_impl.cpp | 50 case Method::START: in Dispatch() 99 return Method::START; in GetMethodEnum()
|
H A D | profiler_impl.h | 72 START, member in panda::ecmascript::tooling::final::final::Method
|
H A D | tracing_impl.h | 66 START, member in panda::ecmascript::tooling::final::final::Method
|
/arkcompiler/runtime_core/static_core/verification/util/parser/tests/ |
H A D | parser_test.cpp | 30 case Action::START: 59 case Action::START:
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_global.h | 102 START = 0, member in panda::ecmascript::builtins::Placement 204 Placement placement = Placement::START);
|
H A D | builtins_global.cpp | 378 if (placement == Placement::START) { in StringPad()
|
/arkcompiler/runtime_core/static_core/verification/config/debug_breakpoint/ |
H A D | config_handler_breakpoints.cpp | 79 if (a == Action::START) { in BreakpointParser()
|
/arkcompiler/runtime_core/static_core/verification/config/parse/ |
H A D | config_parse.cpp | 67 if (a == Action::START) { in HandleSection()
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
H A D | pgo_profiler.h | 129 START, member in panda::ecmascript::pgo::PGOProfiler::State 141 case State::START: in StateToString() 142 return "START"; in StateToString()
|
H A D | pgo_profiler.cpp | 368 if (GetState() == State::START) { in SuspendByGC() 384 SetState(State::START); in ResumeByGC() 406 SetState(State::START); in StartPGODump() 451 while (GetState() == State::START) { in WaitPGODumpFinish() 460 if (GetState() == State::START) { in DumpByForce()
|
/arkcompiler/runtime_core/static_core/verification/config/handlers/ |
H A D | config_handler_method_options.cpp | 91 if (a == Action::START) {
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | method.cpp | 581 EVENT_INTERP_PROFILING(events::InterpProfilingAction::START, GetFullName(), vcalls.size()); in StartProfiling()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
H A D | cocos_worker_test.js | 1418 e.EventObject.START = "start"; 3691 this._target && this._callback && this._callback.call(this._target, this, t, i.START, null, 0); [all...] |