Home
last modified time | relevance | path

Searched refs:StartTime (Results 1 – 14 of 14) 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/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/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DTimer.cpp137 StartTime = TimeRecord::getCurrentTime(true); in startTimer()
144 Time -= StartTime; in stopTimer()
149 Time = StartTime = TimeRecord(); in clear()
/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.c774 struct timeval StartTime; member
795 (void) gettimeofday(&xq->StartTime, NULL); in xmesa_begin_query()
822 q->Result = time_diff(&xq->StartTime, &endTime); in xmesa_end_query()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DTimer.h79 TimeRecord StartTime; ///< The time startTimer() was last called. variable
/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.cpp452 UInt64 StartTime; member
454 void Init() { StartTime = GetWinUserTime(); } in Init()
455 UInt64 GetUserTime() { return GetWinUserTime() - StartTime; } in GetUserTime()
/external/webrtc/webrtc/p2p/base/
Dpseudotcp.cc206 return rtc::TimeSince(StartTime()); in Now()