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

  /external/deqp/modules/glshared/
glsCalibration.hpp 93 , frameTime (frameTime_)
99 , frameTime (0.0f)
104 float frameTime;
161 void recordIteration (deUint64 frameTime);
glsCalibration.cpp 276 m_calibrateIterations.back().frameTime = (float)((double)m_measureState.getTotalTime() / (double)m_measureState.frameTimes.size());
296 const float frameTimeUs = past[i].frameTime;
326 endCalibration = endCalibration || (m_calibrateIterations.back().numDrawCalls == 1 && m_calibrateIterations.back().frameTime > m_params.targetFrameTimeUs*2.0f);
332 int numMeasureFrames = deClamp32(deRoundFloatToInt32(m_params.targetMeasureDurationUs / m_calibrateIterations.back().frameTime), minFrames, maxFrames);
354 if (m_calibrateIterations[i].numDrawCalls == 1 || m_calibrateIterations[i].frameTime > m_params.frameTimeCapUs*1.05f) // Only account for measurements not too near the cap.
355 dataPoints.push_back(Vec2((float)m_calibrateIterations[i].numDrawCalls, m_calibrateIterations[i].frameTime));
408 << de::floatToString(calibrateIterations[iterNdx].frameTime, 2) << " us ("
409 << de::floatToString(1000000.0f / calibrateIterations[iterNdx].frameTime, 2) << " fps)" << TestLog::EndMessage;
  /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 182 int64_t frameTime,
192 (*newBuffer)->meta_data()->setInt64(kKeyTime, frameTime);
197 int64_t frameTime;
198 CHECK(sourceBuffer.meta_data()->findInt64(kKeyTime, &frameTime));
199 createMediaBufferCopy(sourceBuffer, frameTime, &mLastReadBufferCopy);
CameraSource.cpp 818 int64_t frameTime;
841 frameTime = *mFrameTimes.begin();
847 (*buffer)->meta_data()->setInt64(kKeyTime, frameTime);
  /frameworks/base/core/java/android/animation/
ValueAnimator.java 610 private void doAnimationFrame(long frameTime) {
636 if (anim.delayedAnimationFrame(frameTime)) {
659 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 292 * The frameTime parameter specifies the time when the current display frame started
304 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent);
425 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent);
431 void resampleTouchState(nsecs_t frameTime, MotionEvent* event,
  /frameworks/native/libs/input/
InputTransport.cpp 394 bool consumeBatches, nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) {
396 ALOGD("channel '%s' consumer ~ consume: consumeBatches=%s, frameTime=%lld",
397 mChannel->getName().string(), consumeBatches ? "true" : "false", frameTime);
416 result = consumeBatch(factory, frameTime, outSeq, outEvent);
511 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) {
515 if (frameTime < 0) {
522 nsecs_t sampleTime = frameTime;
    [all...]
  /hardware/samsung_slsi/exynos5/libcamera2/
ExynosCameraHWInterface2.h 279 void RegisterTimestamp(int frameCnt, nsecs_t *frameTime);
ExynosCameraHWInterface2.cpp 769 void RequestManager::RegisterTimestamp(int frameCnt, nsecs_t * frameTime)
782 currentEntry->internal_shot.shot.dm.sensor.timeStamp = *((uint64_t*)frameTime);
809 nsecs_t frameTime = currentEntry->internal_shot.shot.dm.sensor.timeStamp;
810 if (frameTime == 0) {
812 frameTime = m_lastTimeStamp;
814 ALOGV("DEBUG(%s): Returning timestamp for reqIndex(%d) (%lld)", __FUNCTION__, index, frameTime);
815 return frameTime;
    [all...]
  /frameworks/base/core/java/android/view/
ViewRootImpl.java     [all...]

Completed in 187 milliseconds