Home
last modified time | relevance | path

Searched refs:StartTime (Results 1 – 12 of 12) sorted by relevance

/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dtiming.h37 : StartTime(0), AccTime(Other.AccTime), Manager(Other.Manager),
47 CHECK_EQ(StartTime, 0U); in stop()
48 StartTime = getMonotonicTime(); in stop()
51 AccTime += getMonotonicTime() - StartTime;
52 StartTime = 0;
59 StartTime = 0;
69 u64 StartTime = 0;
65 u64 StartTime = 0; global() variable
/llvm-project/clang-tools-extra/clangd/index/remote/server/
H A DServer.cpp133 auto StartTime = stopwatch::now(); in Lookup() local
171 logRequestSummary("v1/Lookup", Sent, StartTime); in Lookup()
178 auto StartTime = stopwatch::now(); in FuzzyFind() local
215 logRequestSummary("v1/FuzzyFind", Sent, StartTime); in FuzzyFind()
221 auto StartTime = stopwatch::now(); in Refs() local
257 logRequestSummary("v1/Refs", Sent, StartTime); in Refs()
265 auto StartTime = stopwatch::now(); in Relations()
304 logRequestSummary("v1/ContainedRefs", Sent, StartTime); in Relations()
311 auto StartTime = stopwatch::now(); in operator <<()
350 logRequestSummary("v1/Relations", Sent, StartTime); in MonitoringInfo()
264 auto StartTime = stopwatch::now(); Relations() local
323 logRequestSummary(llvm::StringLiteral RequestName,unsigned Sent,stopwatch::time_point StartTime) logRequestSummary() argument
365 const llvm::sys::TimePoint<> StartTime; global() member in clang::clangd::remote::__anonb5b73aed0111::Monitor
[all...]
/llvm-project/clang-tools-extra/clangd/support/
H A DTrace.cpp91 : StartTime(Tracer->timestamp()), EndTime(0), Name(Name), in JSONSpan()
107 OriginTime = (*Parent)->StartTime; in JSONSpan()
115 (*Parent)->TID, (*Parent)->StartTime); in JSONSpan()
131 {"dur", EndTime - StartTime}}, in ~JSONSpan()
132 TID, StartTime); in ~JSONSpan()
146 double StartTime; member in clang::clangd::trace::__anondc7550a90111::JSONTracer::JSONSpan
293 [StartTime = Clock::now(), Name = Name.str(), &LatencyMetric] { in makeSpanContext()
296 StartTime) in makeSpanContext()
/llvm-project/llvm/lib/Support/
H A DTimeProfiler.cpp95 ClockType::rep getFlameGraphStartUs(TimePointType StartTime) const { in getFlameGraphDurUs()
97 time_point_cast<microseconds>(StartTime))
130 : BeginningOfTime(system_clock::now()), StartTime(ClockType::now()), in end()
230 auto StartUs = E.getFlameGraphStartUs(StartTime); in write()
372 const TimePointType StartTime; in timeTraceProfilerBegin()
302 const TimePointType StartTime; global() member
H A DTimer.cpp156 StartTime = TimeRecord::getCurrentTime(true);
163 Time -= StartTime; in getCurInstructionsExecuted()
171 Time = StartTime = TimeRecord(); in getCurrentTime()
/llvm-project/clang-tools-extra/clangd/index/remote/
H A DClient.cpp78 std::chrono::system_clock::time_point StartTime = in streamRPC() local
80 auto Deadline = StartTime + DeadlineWaitingTime; in streamRPC()
105 std::chrono::system_clock::now() - StartTime) in streamRPC()
/llvm-project/clang/test/CodeGenCXX/
H A Dpr9130.cpp4 virtual int StartTime() { in StartTime() function in nsOggCodecState
/llvm-project/libc/benchmarks/
H A DLibcBenchmark.h212 const auto StartTime = Clock.now();
218 const Duration Elapsed = EndTime - StartTime;
/llvm-project/llvm/include/llvm/Support/
H A DTimer.h83 TimeRecord StartTime; ///< The time startTimer() was last called.
81 TimeRecord StartTime; ///< The time startTimer() was last called. global() variable
/llvm-project/clang-tools-extra/clangd/
H A DPreamble.cpp424 void startTimer() { StartTime = std::chrono::steady_clock::now(); } in startTimer()
427 TotalTime += std::chrono::steady_clock::now() - StartTime; in stopTimer()
434 std::chrono::steady_clock::time_point StartTime; member in clang::clangd::__anon0b7b15160111::WallTimer
/llvm-project/clang/tools/libclang/
H A DCIndexCodeCompletion.cpp705 const llvm::TimeRecord &StartTime = llvm::TimeRecord::getCurrentTime(); in clang_codeCompleteAt_Impl() local
819 os << "\"wall\": " << (EndTime.getWallTime() - StartTime.getWallTime()); in clang_codeCompleteAt_Impl()
/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDriver.cpp860 auto StartTime = system_clock::now(); in FuzzerDriver() local
865 auto MS = duration_cast<milliseconds>(StopTime - StartTime).count(); in FuzzerDriver()