HomeSort by relevance Sort by last modified time
    Searched refs:frameTime (Results 1 - 12 of 12) sorted by null

  /development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
plasma.c 271 double frameTime;
280 double frameTime;
299 s->frameTime = now_ms();
306 double renderTime = now - s->frameTime;
307 double frameTime = now - s->lastTime;
318 minFrame = maxFrame = avgFrame = s->frames[nn].frameTime;
326 double frame = s->frames[nn].frameTime;
350 s->frames[nn].frameTime = frameTime;
  /development/ndk/platforms/android-9/samples/native-plasma/jni/
plasma.c 280 double frameTime;
289 double frameTime;
308 s->frameTime = now_ms();
315 double renderTime = now - s->frameTime;
316 double frameTime = now - s->lastTime;
327 minFrame = maxFrame = avgFrame = s->frames[nn].frameTime;
335 double frame = s->frames[nn].frameTime;
359 s->frames[nn].frameTime = frameTime;
  /frameworks/av/media/libstagefright/
CameraSourceTimeLapse.cpp 179 int64_t frameTime,
189 (*newBuffer)->meta_data()->setInt64(kKeyTime, frameTime);
194 int64_t frameTime;
195 CHECK(sourceBuffer.meta_data()->findInt64(kKeyTime, &frameTime));
196 createMediaBufferCopy(sourceBuffer, frameTime, &mLastReadBufferCopy);
CameraSource.cpp 779 int64_t frameTime;
802 frameTime = *mFrameTimes.begin();
808 (*buffer)->meta_data()->setInt64(kKeyTime, frameTime);
  /frameworks/base/core/java/android/animation/
ValueAnimator.java 588 private void doAnimationFrame(long frameTime) {
614 if (anim.delayedAnimationFrame(frameTime)) {
637 if (mAnimations.contains(anim) && anim.doAnimationFrame(frameTime)) {
    [all...]
  /frameworks/base/core/jni/
android_view_InputEventReceiver.cpp 59 status_t consumeEvents(JNIEnv* env, bool consumeBatches, nsecs_t frameTime,
218 bool consumeBatches, nsecs_t frameTime, bool* outConsumedBatch) {
220 ALOGD("channel '%s' ~ Consuming input events, consumeBatches=%s, frameTime=%lld.",
221 getInputChannelName(), consumeBatches ? "true" : "false", frameTime);
237 consumeBatches, frameTime, &seq, &inputEvent);
  /frameworks/native/include/input/
InputTransport.h 284 * The frameTime parameter specifies the time when the current display frame started
296 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent);
417 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent);
423 void resampleTouchState(nsecs_t frameTime, MotionEvent* event,
  /external/chromium_org/tools/perf/metrics/
smoothness.js 145 var frameTime = frameTimes[i] - frameTimes[i-1];
146 if (frameTime > 1000 / 55)
  /frameworks/native/libs/input/
InputTransport.cpp 393 bool consumeBatches, nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) {
395 ALOGD("channel '%s' consumer ~ consume: consumeBatches=%s, frameTime=%lld",
396 mChannel->getName().string(), consumeBatches ? "true" : "false", frameTime);
415 result = consumeBatch(factory, frameTime, outSeq, outEvent);
510 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) {
514 if (frameTime < 0) {
521 nsecs_t sampleTime = frameTime;
    [all...]
  /hardware/samsung_slsi/exynos5/libcamera2/
ExynosCameraHWInterface2.h 294 void RegisterTimestamp(int frameCnt, nsecs_t *frameTime);
ExynosCameraHWInterface2.cpp 768 void RequestManager::RegisterTimestamp(int frameCnt, nsecs_t * frameTime)
781 currentEntry->internal_shot.shot.dm.sensor.timeStamp = *((uint64_t*)frameTime);
808 nsecs_t frameTime = currentEntry->internal_shot.shot.dm.sensor.timeStamp;
809 if (frameTime == 0) {
811 frameTime = m_lastTimeStamp;
813 ALOGV("DEBUG(%s): Returning timestamp for reqIndex(%d) (%lld)", __FUNCTION__, index, frameTime);
814 return frameTime;
    [all...]
  /frameworks/base/core/java/android/view/
ViewRootImpl.java     [all...]

Completed in 329 milliseconds