Home
last modified time | relevance | path

Searched refs:endTime (Results 1 - 13 of 13) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
H A Dmpl_timer.h38 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 Dsampling_processor.cpp42 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 Dtimers.cpp69 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 Dtimers.h86 TimePoint endTime; member
/arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/
H A Dg1_analytics.cpp156 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 Dg1_analytics.h30 void ReportCollectionEnd(GCTaskCause gcCause, uint64_t endTime, const CollectionSet &collectionSet,
H A Dg1-gc.cpp868 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 Dmain.cpp221 auto endTime = in Main() local
228 << ((endTime - startTime) / timeUnit) << "s." << std::endl; in Main()
/arkcompiler/toolchain/tooling/base/
H A Dpt_types.h2183 Profile &SetEndTime(int64_t endTime) in SetEndTime() argument
2185 endTime_ = endTime; in SetEndTime()
H A Dpt_types.cpp2629 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 Djsnapi_expo.cpp5536 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 Ddebugger_types_test.cpp2167 "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 Dcocos_worker_test.js26080 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...]

Completed in 106 milliseconds