Home
last modified time | relevance | path

Searched refs:lastTime (Results 1 – 9 of 9) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
DStepNormalizer.java60 private double lastTime; field in StepNormalizer
96 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()
/external/guava/guava-bootstrap/src/java/util/concurrent/
DAbstractExecutorService.java52 long lastTime = (timed)? System.nanoTime() : 0; in doInvokeAny() local
74 nanos -= now - lastTime; in doInvokeAny()
75 lastTime = now; in doInvokeAny()
162 long lastTime = System.nanoTime(); in invokeAll() local
168 nanos -= now - lastTime; in invokeAll()
169 lastTime = now; in invokeAll()
186 nanos -= now - lastTime; in invokeAll()
187 lastTime = now; in invokeAll()
/external/webrtc/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
DWebRtcAudioRecord.java77 long lastTime = System.nanoTime(); in run() local
91 TimeUnit.NANOSECONDS.toMillis((nowTime - lastTime)); in run()
92 lastTime = nowTime; in run()
/external/opencv3/modules/ts/src/
Dts_perf.cpp990 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()
/external/skia/src/animator/
DSkDisplayApply.cpp540 SkMSec lastTime = (SkMSec) -1; variable
549 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()
/external/guava/guava/src/com/google/common/util/concurrent/
DMoreExecutors.java691 long lastTime = timed ? System.nanoTime() : 0; in invokeAnyImpl() local
713 nanos -= now - lastTime; in invokeAnyImpl()
714 lastTime = now; in invokeAnyImpl()
/external/google-breakpad/src/client/ios/
DBreakpadController.mm305 NSTimeInterval lastTime = lastTimeNum ? [lastTimeNum floatValue] : 0;
306 NSTimeInterval spanSeconds = CFAbsoluteTimeGetCurrent() - lastTime;
/external/google-breakpad/src/client/mac/sender/
Dcrash_report_sender.m512 NSTimeInterval lastTime = lastTimeNum ? [lastTimeNum floatValue] : 0;
514 NSTimeInterval spanSeconds = (now - lastTime);
/external/opencv3/modules/ts/include/opencv2/ts/
Dts_perf.hpp416 int64 lastTime; member in perf::TestBase