Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DTimeProfiler.cpp82 ClockType::rep getFlameGraphStartUs(TimePointType StartTime) const { in getFlameGraphStartUs()
84 time_point_cast<microseconds>(StartTime)) in getFlameGraphStartUs()
99 : BeginningOfTime(system_clock::now()), StartTime(ClockType::now()), in TimeTraceProfiler()
117 (E.getFlameGraphStartUs(StartTime) + E.getFlameGraphDurUs() >= in end()
118 Entries.back().getFlameGraphStartUs(StartTime) + in end()
165 auto StartUs = E.getFlameGraphStartUs(StartTime); in write()
278 const TimePointType StartTime; member
H A DLockFileManager.cpp309 auto StartTime = std::chrono::steady_clock::now(); in waitForUnlock() local
339 std::chrono::steady_clock::now() - StartTime) in waitForUnlock()
H A DTimer.cpp194 StartTime = TimeRecord::getCurrentTime(true); in startTimer()
201 Time -= StartTime; in stopTimer()
207 Time = StartTime = TimeRecord(); in clear()
/openbsd-src/usr.sbin/cron/
H A Dcron.c67 static time_t StartTime; variable
334 StartTime = time(NULL); in set_time()
337 tm = *localtime(&StartTime); in set_time()
340 GMToff = get_gmtoff(&StartTime, &tm); in set_time()
342 clockTime = (StartTime + GMToff) / (time_t)SECONDS_PER_MINUTE; in set_time()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DTimer.h83 TimeRecord StartTime; ///< The time startTimer() was last called. variable
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCIndexCodeCompletion.cpp703 const llvm::TimeRecord &StartTime = llvm::TimeRecord::getCurrentTime(); in clang_codeCompleteAt_Impl() local
816 os << "\"wall\": " << (EndTime.getWallTime() - StartTime.getWallTime()); in clang_codeCompleteAt_Impl()
/openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerDriver.cpp857 auto StartTime = system_clock::now(); in FuzzerDriver() local
862 auto MS = duration_cast<milliseconds>(StopTime - StartTime).count(); in FuzzerDriver()