/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/ |
H A D | mpl_timer.h | 38 endTime = std::chrono::system_clock::now(); in Stop() 43 return std::chrono::duration_cast<std::chrono::seconds>(endTime - startTime).count(); in Elapsed() 48 return std::chrono::duration_cast<std::chrono::milliseconds>(endTime - startTime).count(); in ElapsedMilliseconds() 53 return std::chrono::duration_cast<std::chrono::microseconds>(endTime - startTime).count(); in ElapsedMicroseconds() 58 std::chrono::system_clock::time_point endTime; member in maple::MPLTimer
|
/arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/ |
H A D | sampling_processor.cpp | 42 uint64_t endTime = startTime; in Run() local 46 int64_t ts = static_cast<int64_t>(interval) - static_cast<int64_t>(startTime - endTime); in Run() 47 endTime = startTime; in Run() 50 endTime = GetMicrosecondsTimeStamp(); in Run()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | timers.cpp | 69 timePointRecord.endTime != std::chrono::steady_clock::time_point()) { in ProcessTimePointRecord() 70 auto duration = timePointRecord.endTime - timePointRecord.startTime; in ProcessTimePointRecord() 173 auto endTime = std::chrono::steady_clock::now(); in TimerEndImpl() local 187 time_point_iter->second.endTime = endTime; in TimerEndImpl()
|
H A D | timers.h | 86 TimePoint endTime; member
|
/arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/ |
H A D | g1_analytics.cpp | 156 void G1Analytics::ReportCollectionEnd(GCTaskCause cause, uint64_t endTime, const CollectionSet &collectionSet, in ReportCollectionEnd() argument 162 auto pauseTime = (endTime - currentYoungCollectionStart_) / ark::os::time::MICRO_TO_NANO; in ReportCollectionEnd() 217 previousYoungCollectionEnd_ = endTime; in ReportCollectionEnd()
|
H A D | g1_analytics.h | 30 void ReportCollectionEnd(GCTaskCause gcCause, uint64_t endTime, const CollectionSet &collectionSet,
|
H A D | g1-gc.cpp | 868 auto endTime = ark::time::GetCurrentTimeInNanos(); in RunMixedGC() local 869 this->GetStats()->AddTimeValue(endTime - startTime, TimeTypeStats::YOUNG_TOTAL_TIME); in RunMixedGC()
|
/arkcompiler/toolchain/tooling/client/ark_multi/ |
H A D | main.cpp | 221 auto endTime = in Main() local 228 << ((endTime - startTime) / timeUnit) << "s." << std::endl; in Main()
|
/arkcompiler/toolchain/tooling/base/ |
H A D | pt_types.h | 2183 Profile &SetEndTime(int64_t endTime) in SetEndTime() argument 2185 endTime_ = endTime; in SetEndTime()
|
H A D | pt_types.cpp | 2629 int64_t endTime; in Create() local 2630 ret = params.GetInt64("endTime", &endTime); in Create() 2632 profile->endTime_ = endTime; in Create() 2634 error += "Unknown or wrong type of 'endTime';"; in Create() 2788 result->Add("endTime", endTime_); in ToJson()
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
H A D | jsnapi_expo.cpp | 5536 std::chrono::system_clock::time_point endTime; in SerializeValue() local 5546 endTime = std::chrono::system_clock::now(); in SerializeValue() 5547 GenerateTimeoutTraceIfNeeded(vm, startTime, endTime, true); in SerializeValue() 5564 std::chrono::system_clock::time_point endTime; in DeserializeValue() local 5570 endTime = std::chrono::system_clock::now(); in DeserializeValue() 5571 GenerateTimeoutTraceIfNeeded(vm, startTime, endTime, false); in DeserializeValue()
|
/arkcompiler/toolchain/tooling/test/ |
H A D | debugger_types_test.cpp | 2167 "tid":1000, "startTime":10, "endTime":25, "gcTime":25, "cInterpreterTime":25, "asmInterpreterTime":25, 2201 "tid":1000, "startTime":10, "endTime":25, "gcTime":25, "cInterpreterTime":25, "asmInterpreterTime":25, 2217 ret = json->GetInt("endTime", &tmpInt);
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
H A D | cocos_worker_test.js | 26080 this.endTime = void 0; 26084 this.endTime = 0; 26180 if (n >= e.time && n < e.endTime) return e.evaluate(n); 26193 t.endTime = n; [all...] |