Home
last modified time | relevance | path

Searched refs:lastTime (Results 1 – 8 of 8) 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/skia/gm/
Danimatedimageblurs.cpp100 void update(const SkAnimTimer& timer, SkScalar lastTime) { in update() argument
102 SkScalar deltaTime = timer.secs() - lastTime; in update()
/external/v8/src/inspector/
Dv8-profiler-agent-impl.cc97 uint64_t lastTime = v8profile->GetStartTime(); in buildInspectorObjectForTimestamps() local
100 array->addItem(static_cast<int>(ts - lastTime)); in buildInspectorObjectForTimestamps()
101 lastTime = ts; in buildInspectorObjectForTimestamps()
/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);