HomeSort by relevance Sort by last modified time
    Searched full:curtime (Results 1 - 25 of 56) sorted by null

1 2 3

  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
rstime.rs 6 rs_time_t curTime = rsTime(0);
8 rsDebug("curTime", curTime);
10 rsLocaltime(&tm, &curTime);
23 curTime = 1294438893;
24 rsLocaltime(&tm, &curTime);
  /frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
rstime.rs 6 rs_time_t curTime = rsTime(0);
8 rsDebug("curTime", curTime);
10 rsLocaltime(&tm, &curTime);
23 curTime = 1294438893;
24 rsLocaltime(&tm, &curTime);
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
rstime.rs 6 rs_time_t curTime = rsTime(0);
8 rsDebug("curTime", curTime);
10 rsLocaltime(&tm, &curTime);
23 curTime = 1294438893;
24 rsLocaltime(&tm, &curTime);
  /frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
rstime.rs 6 rs_time_t curTime = rsTime(0);
8 rsDebug("curTime", curTime);
10 rsLocaltime(&tm, &curTime);
23 curTime = 1294438893;
24 rsLocaltime(&tm, &curTime);
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
rstime.rs 6 rs_time_t curTime = rsTime(0);
8 rsDebug("curTime", curTime);
10 rsLocaltime(&tm, &curTime);
23 curTime = 1294438893;
24 rsLocaltime(&tm, &curTime);
  /frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
rstime.rs 6 rs_time_t curTime = rsTime(0);
8 rsDebug("curTime", curTime);
10 rsLocaltime(&tm, &curTime);
23 curTime = 1294438893;
24 rsLocaltime(&tm, &curTime);
  /external/libdrm/tests/ttmtest/src/
ttmtest.c 172 unsigned long curTime, oldTime;
185 curTime = fastrdtsc();
186 *ticks++ = time_diff(oldTime, curTime);
191 curTime = fastrdtsc();
192 *ticks++ = time_diff(oldTime, curTime);
196 curTime = fastrdtsc();
197 *ticks++ = time_diff(oldTime, curTime);
201 curTime = fastrdtsc();
202 *ticks++ = time_diff(oldTime, curTime);
206 curTime = fastrdtsc()
    [all...]
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-android.c 118 long curTime;
124 curTime = sTimeStopped + sTimeOffset;
126 curTime = _getTime() + sTimeOffset;
129 sTimeOffset = -curTime;
130 curTime = 0;
134 //__android_log_print(ANDROID_LOG_INFO, "SanAngeles", "curTime=%ld", curTime);
136 appRender(curTime, sWindowWidth, sWindowHeight);
  /external/deqp/framework/qphelper/
qpWatchDog.c 69 deUint64 curTime = deGetMicroseconds();
70 int totalSecondsPassed = (int)((curTime - dog->resetTime) / 1000000ull);
71 int secondsSinceLastTouch = (int)((curTime - dog->lastTouchTime) / 1000000ull);
120 deUint64 curTime = deGetMicroseconds();
125 dog->resetTime = curTime;
126 dog->lastTouchTime = curTime;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
ThroughputFilter.java 76 long curTime = SystemClock.elapsedRealtime();
79 if ((curTime - mLastTime) >= (mPeriod * 1000)) {
84 curTime - mLastTime,
89 mLastTime = curTime;
  /external/curl/docs/examples/
progressfunc.c 45 double curtime = 0; local
47 curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME, &curtime);
52 if((curtime - myp->lastruntime) >= MINIMAL_PROGRESS_FUNCTIONALITY_INTERVAL) {
53 myp->lastruntime = curtime;
54 fprintf(stderr, "TOTAL TIME: %f \r\n", curtime);
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiLogger.java 111 long curTime = SystemClock.uptimeMillis();
113 if (shouldLogNow(timing, curTime)) {
115 cache.put(logMessage, new Pair<>(curTime, 1));
137 private static boolean shouldLogNow(@Nullable Pair<Long, Integer> timing, long curTime) {
138 return timing == null || curTime - timing.first > ERROR_LOG_DURATTION_MILLIS;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/performance/
ThroughputFilter.java 84 long curTime = SystemClock.elapsedRealtime();
87 if ((curTime - mLastTime) >= (mPeriod * 1000)) {
97 mLastTime = curTime;
  /external/deqp/execserver/
xsExecutionServer.cpp 249 deUint64 curTime = deGetMicroseconds();
251 lastIoTime = curTime;
252 else if (curTime-lastIoTime > SERVER_IDLE_THRESHOLD*1000)
312 deUint64 curTime = deGetMicroseconds();
313 m_lastKeepAliveSent = curTime;
314 m_lastKeepAliveReceived = curTime;
324 deUint64 curTime = deGetMicroseconds();
327 if (curTime - m_lastKeepAliveReceived > KEEPALIVE_TIMEOUT*1000)
331 if (curTime - m_lastKeepAliveSent > KEEPALIVE_SEND_INTERVAL*1000 &&
  /external/pdfium/xfa/src/fgas/src/localization/
fx_datetime.cpp 147 timeval curTime;
148 gettimeofday(&curTime, NULL);
150 struct timespec curTime;
151 clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &curTime);
154 localtime_r(&curTime.tv_sec, &st);
162 utLocal.wMilliseconds = curTime.tv_usec / 1000;
175 timeval curTime;
176 gettimeofday(&curTime, NULL);
178 struct timespec curTime;
179 clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &curTime);
    [all...]
  /system/extras/tests/workloads/
pwrsummary.sh 106 curTime = $3;
108 startTime = curTime;
111 interval = curTime - lastTime;
113 diffTime = curTime - startTime;
120 printf "%.2f\n",$4; lastTime=curTime;
122 lastTime = curTime;
  /frameworks/base/services/core/java/com/android/server/wm/
DimLayer.java 284 long curTime = SystemClock.uptimeMillis();
294 mStartTime = curTime;
339 final long curTime = SystemClock.uptimeMillis();
341 float alpha = mStartAlpha + alphaDelta * (curTime - mStartTime) / mDuration;
347 if (DEBUG_DIM_LAYER) Slog.v(TAG, "stepAnimation: curTime=" + curTime + " alpha=" + alpha);
373 pw.print(" curTime="); pw.println(SystemClock.uptimeMillis());
  /external/deqp/execserver/tools/
xsTest.cpp 729 int curTime = 0;
736 curTime = clock.getMilliseconds();
738 while (curTime < testTime)
742 if (curTime-lastSendTime > sendInterval)
744 printf(" %d ms: sending keepalive\n", curTime);
746 curTime = clock.getMilliseconds();
747 lastSendTime = curTime;
754 printf(" %d ms: waiting for keepalive\n", curTime);
761 printf(" %d ms: got keepalive\n", curTime);
770 curTime = clock.getMilliseconds()
    [all...]
  /frameworks/av/media/libstagefright/mpeg2ts/
AnotherPacketSource.cpp 543 HLSTime curTime(buffer->meta());
544 if (!(curTime < stopTime)) {
546 (long long)curTime.mTimeUs);
550 newLastQueuedTimeUs = curTime.mTimeUs;
614 HLSTime curTime(buffer->meta());
615 if (startTime < curTime) {
617 (long long)curTime.mTimeUs);
619 firstTimeUs = curTime.mTimeUs;
  /device/google/marlin/dataservices/datatop/src/
datatop.c 94 time_t curtime, endtime; local
101 curtime = tv.tv_sec;
120 while (curtime < endtime
148 curtime = tv.tv_sec;
  /device/google/contexthub/firmware/src/platform/stm32f4xx/
platform.c 418 uint64_t intState, curTime = timGetTime();
420 if (wakeupTime && curTime >= wakeupTime)
432 platSetTimerAlarm(wakeupTime - curTime);
610 uint64_t predecrement = 0, curTime = timGetTime(), length = mWakeupTime - curTime, intState;
616 if (mWakeupTime && mWakeupTime < curTime)
  /external/deqp/framework/platform/android/
tcuAndroidExecService.cpp 225 deUint64 curTime = deGetMicroseconds();
228 if (curTime-m_launchTime < PROCESS_START_TIMEOUT ||
229 curTime-m_lastQueryTime < PROCESS_QUERY_INTERVAL)
237 m_lastQueryTime = curTime;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
rstat.h 48 rstat_timeval curtime; member in struct:statstime
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
rstat.h 48 rstat_timeval curtime; member in struct:statstime
  /device/google/contexthub/firmware/src/
timer.c 158 uint64_t curTime = timGetTime();
175 t->expires = curTime + length;

Completed in 958 milliseconds

1 2 3