HomeSort by relevance Sort by last modified time
    Searched refs:frameTime (Results 1 - 12 of 12) 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 840 int64_t frameTime;
863 frameTime = *mFrameTimes.begin();
869 (*buffer)->meta_data()->setInt64(kKeyTime, frameTime);
  /frameworks/base/core/java/android/animation/
ValueAnimator.java 707 void doAnimationFrame(long frameTime) {
708 mLastFrameTime = frameTime;
736 if (anim.delayedAnimationFrame(frameTime)) {
759 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", (long long)frameTime);
237 consumeBatches, frameTime, &seq, &inputEvent);
  /frameworks/native/include/input/
InputTransport.h 294 * The frameTime parameter specifies the time when the current display frame started
306 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent);
427 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent);
433 void resampleTouchState(nsecs_t frameTime, MotionEvent* event,
  /frameworks/base/libs/hwui/
JankTracker.cpp 80 static uint32_t frameCountIndexForFrameTime(nsecs_t frameTime, uint32_t max) {
81 uint32_t index = static_cast<uint32_t>(ns2ms(frameTime));
  /frameworks/native/libs/input/
InputTransport.cpp 396 bool consumeBatches, nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) {
398 ALOGD("channel '%s' consumer ~ consume: consumeBatches=%s, frameTime=%lld",
399 mChannel->getName().string(), consumeBatches ? "true" : "false", frameTime);
418 result = consumeBatch(factory, frameTime, outSeq, outEvent);
513 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) {
517 if (frameTime < 0) {
524 nsecs_t sampleTime = frameTime;
    [all...]
  /frameworks/base/core/java/android/view/
ViewRootImpl.java     [all...]

Completed in 288 milliseconds