Home
last modified time | relevance | path

Searched refs:start_ (Results 1 - 25 of 27) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/mem/
H A Dclock_scope.h30 start_ = Clock::now(); in ClockScope()
35 start_ = Clock::now(); in Reset()
40 return Clock::now() - start_; in GetPauseTime()
45 auto duration = std::chrono::duration_cast<std::chrono::microseconds>(Clock::now() - start_); in TotalSpentTime()
51 return std::chrono::duration_cast<std::chrono::microseconds>(Clock::now() - start_).count(); in TotalSpentTimeInMicroseconds()
56 auto curTime_ = Duration(start_.time_since_epoch()); in GetCurTime()
64 Clock::time_point start_; member in panda::ecmascript::ClockScope
/arkcompiler/ets_runtime/ecmascript/base/
H A Dgc_ring_buffer.h38 elements_[start_++] = value; in Push()
39 if (start_ == N) { in Push()
40 start_ = 0; in Push()
43 ASSERT(start_ == 0); in Push()
67 start_ = count_ = 0; in Reset()
72 int start_ {0};
H A Ddtoa_helper.h31 BufferVector() : start_(NULL), length_(0) {} in BufferVector()
32 BufferVector(T* data, int length) : start_(data), length_(length) in BufferVector()
37 T* start() const { return start_; } in start()
43 return start_[index]; in operator []()
46 T& first() { return start_[0]; } in first()
48 T& last() { return start_[length_ - 1]; } in last()
51 T* start_; member in panda::ecmascript::base::BufferVector
/arkcompiler/runtime_core/libpandabase/utils/
H A Dbit_memory_region.h37 start_(start + BITS_PER_BYTE * (reinterpret_cast<ValueType *>(data) - data_)), in BitMemoryRegion()
132 size_t index = (start_ + offset) / BITS_PER_BYTE; in Read()
133 size_t shift = (start_ + offset) % BITS_PER_BYTE; in Read()
141 size_t index = (start_ + offset) / BITS_PER_BYTE;
142 size_t shift = (start_ + offset) % BITS_PER_BYTE;
166 size_t index = (start_ + offset) / width;
167 size_t shift = (start_ + offset) % width;
186 offset += start_;
196 start_ += length;
211 size_t index = (start_
[all...]
H A Dbit_table.h309 Range(BitTable *table, int start, int end) : table_(table), start_(start), end_(end) {} in Range()
312 return RangeIterator(table_, start_); in begin()
320 return *(RangeIterator(table_, start_) + index); in operator []()
325 int start_; member in panda::BitTable::Range
/arkcompiler/runtime_core/static_core/libpandabase/utils/
H A Dbit_memory_region.h37 start_(start + BITS_PER_BYTE * (reinterpret_cast<ValueType *>(data) - data_)), in BitMemoryRegion()
135 size_t index = (start_ + offset) / BITS_PER_BYTE; in Read()
136 size_t shift = (start_ + offset) % BITS_PER_BYTE; in Read()
144 size_t index = (start_ + offset) / BITS_PER_BYTE;
145 size_t shift = (start_ + offset) % BITS_PER_BYTE;
169 size_t index = (start_ + offset) / width;
170 size_t shift = (start_ + offset) % width;
189 offset += start_;
199 start_ += length;
214 size_t index = (start_
[all...]
H A Dbit_table.h324 Range(BitTable *table, int start, int end) : table_(table), start_(start), end_(end) {} in Range()
329 return RangeIterator(table_, start_); in begin()
339 return *(RangeIterator(table_, start_) + index); in operator []()
344 int start_; member in ark::BitTable::Range
/arkcompiler/ets_runtime/ecmascript/dfx/vmstat/
H A Dcaller_stat.cpp47 elapsed_ += (now - start_); in Pause()
48 start_ = 0; in Pause()
56 start_ = now; in Resume()
H A Dcaller_stat.h102 return start_ != 0;
124 uint64_t start_ {0};
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Daot_compiler_stats.h67 start_ = Clock::now(); in StartCompiler()
77 auto duration = std::chrono::duration_cast<std::chrono::microseconds>(end_ - start_); in GetTotalTime()
123 Clock::time_point start_; member in panda::ecmascript::AotCompilerStats
H A Dbytecodes.h838 : builder_(builder), start_(start), end_(end) {} in BytecodeIterator()
843 start_ = static_cast<int32_t>(start); in Reset()
869 index_ = start_; in GotoStart()
880 return (idx <= end_) && (idx >= start_); in IsInRange()
885 return (index_ <= end_) && (index_ >= start_); in InRange()
904 int32_t start_ {0};
/arkcompiler/ets_runtime/ecmascript/jit/
H A Djit_dfx.h41 Clock::time_point start_; member
47 maxLockHoldingTime_(0), start_(Clock::now()), blockUIEventstart_(Clock::now()) {} in JitEventParams()
220 jitEventParams.start_ = Clock::now(); in ResetCompilerTime()
254 return std::chrono::duration_cast<std::chrono::seconds>(Clock::now() - jitEventParams.start_).count() >= in checkUploadConditions()
H A Djit_dfx.cpp157 << std::chrono::duration_cast<std::chrono::seconds>(Clock::now() - jitEventParams.start_).count() in PrintJitStatsLog()
177 std::chrono::duration_cast<std::chrono::seconds>(Clock::now() - jitEventParams.start_).count(), in SendJitStatsEvent()
/arkcompiler/runtime_core/static_core/libpandabase/taskmanager/
H A Dtask_scheduler.cpp63 ASSERT(!start_); in RegisterQueue()
84 ASSERT(!start_); in Initialize()
86 start_ = true; in Initialize()
122 ASSERT(start_); in FillWithTasks()
304 ASSERT(start_); in Finalize()
427 ASSERT(start_ == finish_); in ~TaskScheduler()
H A Dworker_thread.cpp120 start_ = true; in Start()
127 while (!start_) { in WaitForStart()
H A Dworker_thread.h147 bool start_ {false};
H A Dtask_scheduler.h303 /// start_ is true if we used Initialize method
304 std::atomic_bool start_ {false};
/arkcompiler/ets_runtime/ecmascript/deoptimizer/
H A Ddeoptimizer.cpp30 start_ = top_ = EcmaInterpreter::GetInterpreterFrameEnd(thread_, prevSp); in FrameWriter()
57 return start_; in GetStart()
77 ASSERT(index < static_cast<size_t>(start_ - top_)); in ReviseValueByIndex()
83 JSTaggedType *start_ {nullptr};
/arkcompiler/runtime_core/libpandafile/
H A Dfile_item_container.h405 start_ = item; in SetStart()
416 index->UpdateItems(start_, end_); in UpdateItems()
433 BaseItem *start_ {nullptr};
H A Dfile_item_container.cpp882 ASSERT(start_ != nullptr); in Write()
883 ASSERT(start_->GetOffset() != 0); in Write()
887 if (!writer->Write<uint32_t>(start_->GetOffset())) { in Write()
/arkcompiler/runtime_core/static_core/libpandafile/
H A Dfile_item_container.h373 start_ = item; in SetStart()
384 index->UpdateItems(start_, end_); in UpdateItems()
401 BaseItem *start_ {nullptr};
H A Dfile_item_container.cpp828 ASSERT(start_ != nullptr); in Write()
829 ASSERT(start_->GetOffset() != 0); in Write()
833 if (!writer->Write<uint32_t>(start_->GetOffset())) { in Write()
/arkcompiler/toolchain/tooling/base/
H A Dpt_types.h1304 return start_.get(); in GetStart()
1309 start_ = std::move(start); in SetStart()
1329 std::unique_ptr<ScriptPosition> start_ {nullptr};
1342 return start_; in GetStart()
1347 start_ = std::move(start); in SetStart()
1364 uint64_t start_ {0};
H A Dpt_params.h124 return start_.get(); in GetStart()
154 std::unique_ptr<Location> start_ {nullptr};
H A Dpt_types.cpp1722 locationRange->start_ = std::move(obj); in Create()
1754 ASSERT(start_ != nullptr); in ToJson()
1755 result->Add("start", start_->ToJson()); in ToJson()
1771 nativeRange->start_ = std::move(start); in Create()

Completed in 27 milliseconds

12