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

1 2 3

  /external/chromium_org/third_party/angle/util/win32/
Win32Timer.cpp 22 LARGE_INTEGER curTime;
23 QueryPerformanceCounter(&curTime);
24 mStartTime = curTime.QuadPart;
31 LARGE_INTEGER curTime;
32 QueryPerformanceCounter(&curTime);
33 mStopTime = curTime.QuadPart;
43 LARGE_INTEGER curTime;
44 QueryPerformanceCounter(&curTime);
45 endTime = curTime.QuadPart;
  /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/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);
  /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;
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiLogger.java 110 long curTime = SystemClock.uptimeMillis();
112 if (shouldLogNow(timing, curTime)) {
114 cache.put(logMessage, new Pair<>(curTime, 1));
136 private static boolean shouldLogNow(@Nullable Pair<Long, Integer> timing, long curTime) {
137 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/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
bouncing_balls.js 96 var curTime = new Date().getTime();
97 var timeStep = (curTime - previousFrameTime) / 1000;
98 previousFrameTime = curTime;
153 var bounceTime = curTime - remainingTime;
  /external/qemu/slirp/
main.h 33 extern u_int curtime;
slirp.c 217 * curtime kept to an accuracy of 1ms
225 curtime = (u_int)tb.time * (u_int)1000;
226 curtime += (u_int)tb.millitm;
233 curtime = (u_int)tt.tv_sec * (u_int)1000;
234 curtime += (u_int)tt.tv_usec / (u_int)1000;
237 curtime++;
274 time_fasttimo = curtime; /* Flag when we want a fasttimo */
331 if (so->so_expire <= curtime) {
371 timeout.tv_usec = ((500 - (curtime - last_slowtimo)) * 1000) + 10000;
379 tmp_time = (200 - (curtime - time_fasttimo)) * 1000
    [all...]
  /external/qemu/slirp-android/
main.h 36 extern u_int curtime;
  /frameworks/base/services/core/java/com/android/server/wm/
DimLayer.java 231 long curTime = SystemClock.uptimeMillis();
241 mStartTime = curTime;
286 final long curTime = SystemClock.uptimeMillis();
288 float alpha = mStartAlpha + alphaDelta * (curTime - mStartTime) / mDuration;
294 if (DEBUG) Slog.v(TAG, "stepAnimation: curTime=" + curTime + " alpha=" + alpha);
319 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/base/packages/SystemUI/src/com/android/systemui/recents/misc/
Console.java 96 long curTime = System.currentTimeMillis();
97 mTimeLogs.put(key, curTime);
99 "started @ " + curTime);
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchFragment.java 265 long curTime = Utils.getTimeNow();
266 mAccumulatedTime += (curTime - mStartTime);
575 final long curTime = time - mStartTime + mAccumulatedTime;
579 Lap firstLap = new Lap(curTime, curTime);
582 mLapsAdapter.addLap(new Lap(0, curTime));
584 mTime.setIntervalTime(curTime);
588 final long lapTime = curTime - mLapsAdapter.getItem(1).mTotalTime;
590 mLapsAdapter.getItem(0).mTotalTime = curTime;
592 mLapsAdapter.addLap(new Lap(0, curTime));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelinePowerOverview.js 70 var curTime = record.timestamp;
78 accumulatedEnergy += (curTime - prevTime) * record.value;
82 this._times.push(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.6/sysroot/usr/include/rpcsvc/
rstat.h 48 rstat_timeval curtime; member in struct:statstime
  /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
  /packages/apps/FMRadio/src/com/android/fmradio/
FmRecorder.java 127 long curTime = System.currentTimeMillis();
128 Date date = new Date(curTime);
370 long curTime = System.currentTimeMillis();
372 Date date = new Date(curTime);
391 cv.put(MediaStore.Audio.Media.DATE_ADDED, (int) (curTime / oneSecond));

Completed in 816 milliseconds

1 2 3