/arkcompiler/ets_runtime/ecmascript/mem/ |
H A D | clock_scope.h | 30 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 D | gc_ring_buffer.h | 38 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 D | dtoa_helper.h | 31 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 D | bit_memory_region.h | 37 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 D | bit_table.h | 309 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 D | bit_memory_region.h | 37 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 D | bit_table.h | 324 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 D | caller_stat.cpp | 47 elapsed_ += (now - start_); in Pause() 48 start_ = 0; in Pause() 56 start_ = now; in Resume()
|
H A D | caller_stat.h | 102 return start_ != 0; 124 uint64_t start_ {0};
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | aot_compiler_stats.h | 67 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 D | bytecodes.h | 838 : 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 D | jit_dfx.h | 41 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 D | jit_dfx.cpp | 157 << 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 D | task_scheduler.cpp | 63 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 D | worker_thread.cpp | 120 start_ = true; in Start() 127 while (!start_) { in WaitForStart()
|
H A D | worker_thread.h | 147 bool start_ {false};
|
H A D | task_scheduler.h | 303 /// start_ is true if we used Initialize method 304 std::atomic_bool start_ {false};
|
/arkcompiler/ets_runtime/ecmascript/deoptimizer/ |
H A D | deoptimizer.cpp | 30 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 D | file_item_container.h | 405 start_ = item; in SetStart() 416 index->UpdateItems(start_, end_); in UpdateItems() 433 BaseItem *start_ {nullptr};
|
H A D | file_item_container.cpp | 882 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 D | file_item_container.h | 373 start_ = item; in SetStart() 384 index->UpdateItems(start_, end_); in UpdateItems() 401 BaseItem *start_ {nullptr};
|
H A D | file_item_container.cpp | 828 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 D | pt_types.h | 1304 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 D | pt_params.h | 124 return start_.get(); in GetStart() 154 std::unique_ptr<Location> start_ {nullptr};
|
H A D | pt_types.cpp | 1722 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()
|