Searched refs:lastTime (Results 1 – 9 of 9) sorted by relevance
60 private double lastTime; field in StepNormalizer96 lastTime = Double.NaN; in reset()120 lastTime = interpolator.getPreviousTime(); in handleStep()121 interpolator.setInterpolatedTime(lastTime); in handleStep()126 forward = interpolator.getCurrentTime() >= lastTime; in handleStep()133 double nextTime = lastTime + h; in handleStep()138 handler.handleStep(lastTime, lastState, lastDerivatives, false); in handleStep()141 lastTime = nextTime; in handleStep()142 interpolator.setInterpolatedTime(lastTime); in handleStep()156 handler.handleStep(lastTime, lastState, lastDerivatives, true); in handleStep()
52 long lastTime = (timed)? System.nanoTime() : 0; in doInvokeAny() local74 nanos -= now - lastTime; in doInvokeAny()75 lastTime = now; in doInvokeAny()162 long lastTime = System.nanoTime(); in invokeAll() local168 nanos -= now - lastTime; in invokeAll()169 lastTime = now; in invokeAll()186 nanos -= now - lastTime; in invokeAll()187 lastTime = now; in invokeAll()
77 long lastTime = System.nanoTime(); in run() local91 TimeUnit.NANOSECONDS.toMillis((nowTime - lastTime)); in run()92 lastTime = nowTime; in run()
990 lastTime = totalTime = timeLimit = 0; in TestBase()1271 lastTime = cv::getTickCount(); in startTimer()1277 if (lastTime == 0) in stopTimer()1279 lastTime = time - lastTime; in stopTimer()1280 totalTime += lastTime; in stopTimer()1281 lastTime -= _timeadjustment; in stopTimer()1282 if (lastTime < 0) lastTime = 0; in stopTimer()1283 times.push_back(lastTime); in stopTimer()1284 lastTime = 0; in stopTimer()1569 lastTime = 0; in SetUp()
540 SkMSec lastTime = (SkMSec) -1; variable549 if (lastTime == (SkMSec) -1) in interpolate()550 lastTime = rawTime - 1; in interpolate()552 strcmp(id, "a3") == 0 && rawTime > lastTime) { in interpolate()553 lastTime += 1000; in interpolate()
691 long lastTime = timed ? System.nanoTime() : 0; in invokeAnyImpl() local713 nanos -= now - lastTime; in invokeAnyImpl()714 lastTime = now; in invokeAnyImpl()
305 NSTimeInterval lastTime = lastTimeNum ? [lastTimeNum floatValue] : 0;306 NSTimeInterval spanSeconds = CFAbsoluteTimeGetCurrent() - lastTime;
512 NSTimeInterval lastTime = lastTimeNum ? [lastTimeNum floatValue] : 0;514 NSTimeInterval spanSeconds = (now - lastTime);
416 int64 lastTime; member in perf::TestBase