Home
last modified time | relevance | path

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

/external/chromium_org/third_party/angle/samples/angle/sample_util/win32/
DWin32Timer.cpp22 LARGE_INTEGER curTime; in start() local
23 QueryPerformanceCounter(&curTime); in start()
24 mStartTime = curTime.QuadPart; in start()
31 LARGE_INTEGER curTime; in stop() local
32 QueryPerformanceCounter(&curTime); in stop()
33 mStopTime = curTime.QuadPart; in stop()
43 LARGE_INTEGER curTime; in getElapsedTime() local
44 QueryPerformanceCounter(&curTime); in getElapsedTime()
45 endTime = curTime.QuadPart; in getElapsedTime()
/external/deqp/framework/qphelper/
DqpWatchDog.c69 deUint64 curTime = deGetMicroseconds(); in watchDogThreadFunc() local
70 int totalSecondsPassed = (int)((curTime - dog->resetTime) / 1000000ull); in watchDogThreadFunc()
71 int secondsSinceLastTouch = (int)((curTime - dog->lastTouchTime) / 1000000ull); in watchDogThreadFunc()
120 deUint64 curTime = deGetMicroseconds(); in qpWatchDog_reset() local
125 dog->resetTime = curTime; in qpWatchDog_reset()
126 dog->lastTouchTime = curTime; in qpWatchDog_reset()
DqpInfo.c58 deUint64 curTime = (deUint64)time(DE_NULL); in qpIsLicenseValid() local
60 return begin <= curTime && curTime <= end; in qpIsLicenseValid()
/external/deqp/execserver/
DxsExecutionServer.cpp249 deUint64 curTime = deGetMicroseconds(); in processSession() local
251 lastIoTime = curTime; in processSession()
252 else if (curTime-lastIoTime > SERVER_IDLE_THRESHOLD*1000) in processSession()
312 deUint64 curTime = deGetMicroseconds(); in initKeepAlives() local
313 m_lastKeepAliveSent = curTime; in initKeepAlives()
314 m_lastKeepAliveReceived = curTime; in initKeepAlives()
324 deUint64 curTime = deGetMicroseconds(); in pollKeepAlives() local
327 if (curTime - m_lastKeepAliveReceived > KEEPALIVE_TIMEOUT*1000) in pollKeepAlives()
331 if (curTime - m_lastKeepAliveSent > KEEPALIVE_SEND_INTERVAL*1000 && in pollKeepAlives()
/external/deqp/execserver/tools/
DxsTest.cpp729 int curTime = 0; in runClient() local
736 curTime = clock.getMilliseconds(); in runClient()
738 while (curTime < testTime) in runClient()
742 if (curTime-lastSendTime > sendInterval) in runClient()
744 printf(" %d ms: sending keepalive\n", curTime); in runClient()
746 curTime = clock.getMilliseconds(); in runClient()
747 lastSendTime = curTime; in runClient()
754 printf(" %d ms: waiting for keepalive\n", curTime); in runClient()
761 printf(" %d ms: got keepalive\n", curTime); in runClient()
770 curTime = clock.getMilliseconds(); in runClient()
[all …]
/external/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
Dbouncing_balls.js96 var curTime = new Date().getTime();
97 var timeStep = (curTime - previousFrameTime) / 1000;
98 previousFrameTime = curTime;
153 var bounceTime = curTime - remainingTime;
/external/deqp/framework/platform/android/
DtcuAndroidExecService.cpp225 deUint64 curTime = deGetMicroseconds(); in isRunning() local
228 if (curTime-m_launchTime < PROCESS_START_TIMEOUT || in isRunning()
229 curTime-m_lastQueryTime < PROCESS_QUERY_INTERVAL) in isRunning()
237 m_lastQueryTime = curTime; in isRunning()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
DTimelinePowerOverview.js70 var curTime = record.timestamp;
78 accumulatedEnergy += (curTime - prevTime) * record.value;
82 this._times.push(curTime);
/external/deqp/executor/
DxeTcpIpLink.cpp516 deUint64 curTime = deGetMicroseconds(); in keepaliveTimerCallback() local
519 if ((deInt64)curTime-(deInt64)lastKeepalive > xs::KEEPALIVE_TIMEOUT*1000) in keepaliveTimerCallback()
/external/deqp/modules/gles2/performance/
Des2pTextureUploadTests.cpp436 deUint64 curTime = deGetMicroseconds(); in iterate() local
437 m_calibrator.recordIteration(curTime - m_renderStart); in iterate()
/external/pdfium/fpdfsdk/src/
Dfsdk_baseannot.cpp94 time_t curTime; in ResetDateTime() local
95 time(&curTime); in ResetDateTime()
98 newtime = localtime(&curTime); in ResetDateTime()
Dfsdk_annothandler.cpp97 CPDFSDK_DateTime curTime; in Annot_OnCreate() local
98 pPDFAnnot->m_pAnnotDict->SetAtString("M", curTime.ToPDFDateTimeString()); in Annot_OnCreate()