Home
last modified time | relevance | path

Searched refs:START (Results 1 - 24 of 24) sorted by relevance

/arkcompiler/runtime_core/static_core/libpandabase/utils/
H A Dbit_field.h27 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 Dcframe_layout.h29 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 Dmem_range_test.cpp66 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 Dmem_range_test.cpp71 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 Dorigin.h28 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 Dabstract_typed_value.h58 : 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 Dparser.h57 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 Dcframe_layout.h29 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 Dgc_stats.h40 START, member in panda::ecmascript::GCType
222 void PrintGCSummaryStatistic(GCType type = GCType::START);
303 GCType gcType_ {GCType::START};
H A Dgc_stats.cpp305 if (type != GCType::START && !CheckIfNeedPrint(type)) { in PrintGCSummaryStatistic()
308 type = type == GCType::START ? gcType_ : type; in PrintGCSummaryStatistic()
/arkcompiler/toolchain/tooling/agent/
H A Dtracing_impl.cpp41 case Method::START: in Dispatch()
61 return Method::START; in GetMethodEnum()
H A Dprofiler_impl.cpp50 case Method::START: in Dispatch()
99 return Method::START; in GetMethodEnum()
H A Dprofiler_impl.h72 START, member in panda::ecmascript::tooling::final::final::Method
H A Dtracing_impl.h66 START, member in panda::ecmascript::tooling::final::final::Method
/arkcompiler/runtime_core/static_core/verification/util/parser/tests/
H A Dparser_test.cpp30 case Action::START:
59 case Action::START:
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_global.h102 START = 0, member in panda::ecmascript::builtins::Placement
204 Placement placement = Placement::START);
H A Dbuiltins_global.cpp378 if (placement == Placement::START) { in StringPad()
/arkcompiler/runtime_core/static_core/verification/config/debug_breakpoint/
H A Dconfig_handler_breakpoints.cpp79 if (a == Action::START) { in BreakpointParser()
/arkcompiler/runtime_core/static_core/verification/config/parse/
H A Dconfig_parse.cpp67 if (a == Action::START) { in HandleSection()
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
H A Dpgo_profiler.h129 START, member in panda::ecmascript::pgo::PGOProfiler::State
141 case State::START: in StateToString()
142 return "START"; in StateToString()
H A Dpgo_profiler.cpp368 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 Dconfig_handler_method_options.cpp91 if (a == Action::START) {
/arkcompiler/runtime_core/static_core/runtime/
H A Dmethod.cpp581 EVENT_INTERP_PROFILING(events::InterpProfilingAction::START, GetFullName(), vcalls.size()); in StartProfiling()
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
H A Dcocos_worker_test.js1418 e.EventObject.START = "start";
3691 this._target && this._callback && this._callback.call(this._target, this, t, i.START, null, 0);
[all...]

Completed in 48 milliseconds