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

1 2

  /external/chromium/third_party/libevent/sample/
time-test.c 30 int lasttime; variable
40 newtime - lasttime);
41 lasttime = newtime;
64 lasttime = time(NULL);
  /external/chromium_org/third_party/libevent/sample/
time-test.c 30 int lasttime; variable
40 newtime - lasttime);
41 lasttime = newtime;
64 lasttime = time(NULL);
  /external/jmonkeyengine/engine/src/test/jme3test/network/
TestThroughput.java 41 private static long lastTime = -1;
68 //System.out.println( "total:" + total + " counter:" + counter + " lastTime:" + lastTime + " time:" + time );
69 if (lastTime < 0) {
70 lastTime = time;
71 } else if (time - lastTime > 1000) {
72 long delta = time - lastTime;
77 lastTime = time;
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractListeningExecutorService.java 80 long lastTime = timed ? System.nanoTime() : 0;
103 nanos -= now - lastTime;
104 lastTime = now;
194 long lastTime = System.nanoTime();
202 nanos -= now - lastTime;
203 lastTime = now;
222 nanos -= now - lastTime;
223 lastTime = now;
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
holo_spiral.rs 71 static float lastTime;
139 lastTime = rsUptimeMillis();
150 float elapsed = (now - lastTime) * 0.001f;
151 lastTime = now;
  /external/qemu/distrib/sdl-1.2.15/src/video/caca/
SDL_cacavideo.h 58 struct timeval lasttime; member in struct:SDL_PrivateVideoData
71 #define Caca_lasttime (this->hidden->lasttime)
  /packages/experimental/RpcPerformance/src/com/android/rpc_performance/
ProviderPerfActivity.java 301 long lastTime = System.nanoTime();
304 sumNanos += System.nanoTime() - lastTime;
324 long lastTime = System.nanoTime();
329 sumNanos += System.nanoTime() - lastTime;
371 long lastTime = System.nanoTime();
375 sumNanos += (nowTime - lastTime);
396 long lastTime = System.nanoTime();
403 sumNanos += (nowTime - lastTime);
404 lastTime = nowTime;
457 long lastTime = System.nanoTime()
    [all...]
  /external/chromium_org/third_party/angle/samples/gles2_book/Common/Win32/
esUtil_win32.c 162 DWORD lastTime = GetTickCount();
168 float deltaTime = (float)( curTime - lastTime ) / 1000.0f;
169 lastTime = curTime;
  /packages/apps/Settings/src/com/android/settings/widget/
ChartNetworkSeriesView.java 188 long lastTime = mHoriz.convertToValue(lastX);
221 if (lastTime != startTime) {
233 lastTime = endTime;
237 if (lastTime < mEndTime) {
265 entry = mStats.getValues(lastTime - WEEK_IN_MILLIS * 2, lastTime, now, entry);
274 final long lastWeekTime = lastTime - WEEK_IN_MILLIS + (futureTime % WEEK_IN_MILLIS);
281 lastX = mHoriz.convertToPoint(lastTime + futureTime);
  /frameworks/base/services/java/com/android/server/
BootReceiver.java 169 long lastTime = prefs.getLong(filename, 0);
170 if (lastTime == fileTime) return; // Already logged this particular file
190 long lastTime = prefs.getLong(tag, 0);
191 if (lastTime == fileTime) return; // Already logged this particular file
AlarmManagerService.java 627 long lastTime = Long.MIN_VALUE;
631 if (b.start >= lastTime) {
633 lastTime = b.start;
    [all...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/
VideoRecorderAppState.java 201 private long lastTime = 0;
226 long difference = time - lastTime;
227 lastTime = time;
  /development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
plasma.c 279 double lastTime;
290 s->lastTime = now_ms();
307 double frameTime = now - s->lastTime;
360 s->lastTime = now;
  /external/ppp/pppd/
tty.c 985 struct timeval lasttime; local
1082 gettimeofday(&lasttime, NULL);
1084 putc(lasttime.tv_sec >> 24, recordf);
1085 putc(lasttime.tv_sec >> 16, recordf);
1086 putc(lasttime.tv_sec >> 8, recordf);
1087 putc(lasttime.tv_sec, recordf);
1088 lasttime.tv_usec = 0;
1145 if (!record_write(recordf, 4, NULL, 0, &lasttime))
1150 if (!record_write(recordf, 2, ibufp, nibuf, &lasttime))
1172 if (!record_write(recordf, 3, NULL, 0, &lasttime))
    [all...]
  /development/apps/Development/src/com/android/development/
LogViewer.java 80 long lastTime = System.currentTimeMillis();
  /development/ndk/platforms/android-9/samples/native-plasma/jni/
plasma.c 288 double lastTime;
299 s->lastTime = now_ms();
316 double frameTime = now - s->lastTime;
369 s->lastTime = now;
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceProcessor.java 84 long lastTime = -1;
97 if (untilTime > lastTime) {
98 lastTime = untilTime;
102 if (lastTime != -1 && recur.rdates != null) {
104 if (dt > lastTime) {
105 lastTime = dt;
112 if (lastTime != -1 && !hasCount) {
113 return lastTime;
119 if (dt > lastTime) {
120 lastTime = dt
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayApply.cpp 540 SkMSec lastTime = (SkMSec) -1;
549 if (lastTime == (SkMSec) -1)
550 lastTime = rawTime - 1;
552 strcmp(id, "a3") == 0 && rawTime > lastTime) {
553 lastTime += 1000;
  /external/skia/src/animator/
SkDisplayApply.cpp 540 SkMSec lastTime = (SkMSec) -1;
549 if (lastTime == (SkMSec) -1)
550 lastTime = rawTime - 1;
552 strcmp(id, "a3") == 0 && rawTime > lastTime) {
553 lastTime += 1000;
  /external/libvorbis/vq/
bookutil.c 308 static long lasttime=0; local
314 if(lasttime!=test){
315 lasttime=test;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureTrail.java 236 final int lastTime = sinceDown - eventTimes[startIndex];
237 float r1 = getWidth(lastTime, params) / 2.0f;
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerService.cpp 217 mBatteryAudio.lastTime[i] = 0;
    [all...]
  /frameworks/ex/carousel/java/com/android/ex/carousel/
carousel.rs     [all...]
  /external/chromium/chrome/browser/resources/
history.html 596 var lastTime = Math.infinity;
614 } else if (lastTime - thisTime > BROWSING_GAP_TIME) {
617 lastTime = thisTime;
    [all...]
history2.html 607 var lastTime = Math.infinity;
631 } else if (lastTime - thisTime > BROWSING_GAP_TIME) {
636 lastTime = thisTime;
    [all...]

Completed in 743 milliseconds

1 2