HomeSort by relevance Sort by last modified time
    Searched full:curtime (Results 1 - 25 of 52) 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/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);
  /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);
  /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/jmonkeyengine/engine/src/test/jme3test/network/
TestLatency.java 85 long curTime = getTime();
88 //System.out.println("Time recieved by client: " + curTime);
90 long latency = (curTime - timeMsg.timeSent);
92 //long timeOffset = ((timeMsg.timeSent + curTime) / 2) - timeMsg.timeReceived;
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
BombControl.java 43 private float curTime = -1.0f;
100 curTime = 0;
147 if (enabled && curTime >= 0) {
148 curTime += tpf;
149 if (curTime > fxTime) {
150 curTime = -1;
  /frameworks/base/services/java/com/android/server/wm/
DimLayer.java 178 long curTime = SystemClock.uptimeMillis();
188 mStartTime = curTime;
233 final long curTime = SystemClock.uptimeMillis();
235 float alpha = mStartAlpha + alphaDelta * (curTime - mStartTime) / mDuration;
241 if (DEBUG) Slog.v(TAG, "stepAnimation: curTime=" + curTime + " alpha=" + alpha);
265 pw.print(" curTime="); pw.println(SystemClock.uptimeMillis());
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
LwjglTimer.java 116 long curTime = getTime();
117 lastTPF = (curTime - oldTime) * (1.0f / LWJGL_TIMER_RES);
119 oldTime = curTime;
  /external/jmonkeyengine/engine/src/test/jme3test/audio/
TestMusicPlayer.java 52 private float curTime = 0;
209 int pos = (int) (curTime * 100);
215 int minutesNow = (int) (curTime / 60);
216 int secondsNow = (int) (curTime % 60);
261 curTime = sldBar.getValue() / 100f;
262 if (curTime < 0)
263 curTime = 0;
265 musicSource.setTimeOffset(curTime);
  /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;
slirp.c 277 * curtime kept to an accuracy of 1ms
285 curtime = (u_int)tb.time * (u_int)1000;
286 curtime += (u_int)tb.millitm;
293 curtime = (u_int)tt.tv_sec * (u_int)1000;
294 curtime += (u_int)tt.tv_usec / (u_int)1000;
297 curtime++;
334 time_fasttimo = curtime; /* Flag when we want a fasttimo */
400 if (so->so_expire <= curtime) {
440 timeout.tv_usec = ((500 - (curtime - last_slowtimo)) * 1000) + 10000;
448 tmp_time = (200 - (curtime - time_fasttimo)) * 1000
    [all...]
  /external/quake/quake/src/QW/client/
sys_win.c 42 static double curtime = 0.0; variable
319 curtime += time;
321 if (curtime == lastcurtime)
327 curtime += 1.0;
336 lastcurtime = curtime;
342 return curtime;
360 curtime = (double) (Q_atof(com_argv[j+1]));
364 curtime = 0.0;
367 lastcurtime = curtime;
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchFragment.java 237 long curTime = Utils.getTimeNow();
238 mAccumulatedTime += (curTime - mStartTime);
626 long curTime = time - mStartTime + mAccumulatedTime;
629 Lap firstLap = new Lap(curTime, curTime);
631 mLapsAdapter.addLap(new Lap(0, curTime));
632 mTime.setIntervalTime(curTime);
635 long lapTime = curTime - ((Lap) mLapsAdapter.getItem(1)).mTotalTime;
637 ((Lap)mLapsAdapter.getItem(0)).mTotalTime = curTime;
679 long curTime = Utils.getTimeNow()
    [all...]
  /external/quake/quake/src/WinQuake/
sys_dos.cpp 57 static double curtime = 0.0; variable
723 curtime += time;
725 if (curtime == lastcurtime)
731 curtime += 1.0;
740 lastcurtime = curtime;
744 return curtime;
759 oldtime = curtime;
765 curtime = (double) (Q_atof(com_argv[j+1]));
769 curtime = 0.0;
771 lastcurtime = curtime;
    [all...]
sys_win.cpp 41 static double curtime = 0.0; variable
502 curtime += time;
504 if (curtime == lastcurtime)
510 curtime += 1.0;
519 lastcurtime = curtime;
525 return curtime;
544 curtime = (double) (Q_atof(com_argv[j+1]));
548 curtime = 0.0;
551 lastcurtime = curtime;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
rstat.h 48 rstat_timeval curtime; member in struct:statstime
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-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.7-4.6/sysroot/usr/include/rpcsvc/
rstat.h 48 rstat_timeval curtime; member in struct:statstime
  /frameworks/base/services/java/com/android/server/
Watchdog.java 355 * @param curTime The current system time.
359 String shouldWeBeBrutalLocked(long curTime) {
377 static long computeCalendarTime(Calendar c, long curTime,
381 c.setTimeInMillis(curTime);
392 if (newTime < curTime) {
  /dalvik/vm/
Misc.cpp 521 u8 curTime;
527 curTime = dvmGetRelativeTimeUsec();
528 if (curTime >= relStartTime + maxTotalSleep) {
530 relStartTime, maxTotalSleep, curTime);
547 if (curTime + curDelay >= relStartTime + maxTotalSleep) {
549 curDelay, (int) ((relStartTime + maxTotalSleep) - curTime));
550 curDelay = (int) ((relStartTime + maxTotalSleep) - curTime);
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java 913 private long computeOverage(long curTime) {
915 return mLastTime + mLastAddedDuration - curTime;
920 private void recomputeLastDuration(long curTime, boolean abort) {
921 final long overage = computeOverage(curTime);
932 mLastAddedTime = curTime;
    [all...]

Completed in 1870 milliseconds

1 2 3