Home
last modified time | relevance | path

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

/external/webrtc/webrtc/system_wrappers/source/
Dclock.cc108 FILETIME StartTime; in CurrentTimeVal() local
114 GetTime(&StartTime); in CurrentTimeVal()
116 Time = (((uint64_t) StartTime.dwHighDateTime) << 32) + in CurrentTimeVal()
117 (uint64_t) StartTime.dwLowDateTime; in CurrentTimeVal()
/external/clang/test/CodeGenCXX/
Dpr9130.cpp4 virtual int StartTime() { in StartTime() function in nsOggCodecState
/external/llvm/lib/Support/
DTimer.cpp141 StartTime = TimeRecord::getCurrentTime(true); in startTimer()
148 Time -= StartTime; in stopTimer()
153 Time = StartTime = TimeRecord(); in clear()
/external/netperf/src/
Dnetcpu_ntperf.c77 LARGE_INTEGER StartTime; member
216 PerfCntrs->StartTime = PerfCntrs->EndTime; in RestartPerfCntrs()
320 PerfCntrs->StartTime.QuadPart; in ReportPerfCntrs()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DTimer.cpp143 StartTime = TimeRecord::getCurrentTime(true); in startTimer()
150 Time -= StartTime; in stopTimer()
155 Time = StartTime = TimeRecord(); in clear()
/external/libchrome/base/debug/
Dtask_annotator.cc34 stopwatch.StartTime() - pending_task.EffectiveTimePosted(); in RunTask()
/external/libchrome/base/
Dtracked_objects.cc549 TrackedTime start_of_run = stopwatch.StartTime(); in TallyRunOnNamedThreadIfTracking()
582 TrackedTime start_of_run = stopwatch.StartTime(); in TallyRunOnWorkerThreadIfTracking()
887 TrackedTime TaskStopwatch::StartTime() const { in StartTime() function in tracked_objects::TaskStopwatch
Dtracked_objects.h750 TrackedTime StartTime() const;
/external/llvm/include/llvm/Support/
DTimer.h80 TimeRecord StartTime; // The time startTimer() was last called variable
/external/swiftshader/third_party/PowerVR_SDK/Shell/
DPVRShell.cpp1511 static unsigned long StartTime = 0; in Run() local
1606 if(StartTime==0) in Run()
1608 StartTime = OsGetTime(); in Run()
1659 …if((m_pShell->m_pShellData->fDieAfterTime>=0.0f) && (((OsGetTime()-StartTime)*0.001f) >= m_pShell-… in Run()
/external/llvm/lib/Fuzzer/
DFuzzerDriver.cpp376 auto StartTime = system_clock::now(); in FuzzerDriver() local
381 auto MS = duration_cast<milliseconds>(StopTime - StartTime).count(); in FuzzerDriver()
/external/mesa3d/src/mesa/drivers/x11/
Dxm_dd.c770 struct timeval StartTime; member
791 (void) gettimeofday(&xq->StartTime, NULL); in xmesa_begin_query()
818 q->Result = time_diff(&xq->StartTime, &endTime); in xmesa_end_query()
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DTimer.h78 TimeRecord StartTime; ///< The time startTimer() was last called. variable
/external/clang/tools/libclang/
DCIndexCodeCompletion.cpp658 const llvm::TimeRecord &StartTime = llvm::TimeRecord::getCurrentTime(); in clang_codeCompleteAt_Impl() local
760 os << "\"wall\": " << (EndTime.getWallTime() - StartTime.getWallTime()); in clang_codeCompleteAt_Impl()
/external/lzma/CPP/7zip/UI/Common/
DBench.cpp454 UInt64 StartTime; member
456 void Init() { StartTime = GetWinUserTime(); } in Init()
457 UInt64 GetUserTime() { return GetWinUserTime() - StartTime; } in GetUserTime()
/external/webrtc/webrtc/p2p/base/
Dpseudotcp.cc206 return rtc::TimeSince(StartTime()); in Now()