HomeSort by relevance Sort by last modified time
    Searched defs:fps (Results 1 - 25 of 58) sorted by null

1 2 3

  /development/samples/BrowserPlugin/jni/animation/
AnimationThread.cpp 139 float fps = m_counter / ((android::uptimeMillis() - m_startTime) / 1000); local
143 gLogI.log(kError_ANPLogType, "TEXT: counter(%d) fps(%f) spf(%f) lock(%f) execution(%f)\n", (int)m_counter, fps, spf, lpf, exe);
  /frameworks/native/include/ui/
DisplayInfo.h 34 float fps; member in struct:android::DisplayInfo
  /external/jmonkeyengine/engine/src/android/com/jme3/system/android/
AndroidTimer.java 50 private float fps; field in class:AndroidTimer
78 return fps;
87 fps = 1.0f / tpf;
  /external/jmonkeyengine/engine/src/core/com/jme3/system/
NanoTimer.java 49 private float fps; field in class:NanoTimer
75 return fps;
84 fps = 1.0f / tpf;
  /frameworks/native/include/private/gui/
SharedBufferStack.h 37 float fps; member in struct:android::display_cblk_t
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
ObjectAnimationModifier.java 49 int fps = blenderContext.getBlenderKey().getFps(); local
52 SpatialTrack track = (SpatialTrack) ipo.calculateTrack(-1, 0, ipo.getLastFrame(), fps, true);
54 Animation animation = new Animation(objectAnimationName, ipo.getLastFrame() / fps);
  /frameworks/base/core/jni/
android_view_Display.cpp 42 jfieldID fps; member in struct:android::offsets_t
59 info.fps = 60;
71 env->SetFloatField(clazz, offsets.fps, info.fps);
139 offsets.fps = env->GetFieldID(clazz, "mRefreshRate", "F");
  /frameworks/native/opengl/tests/testFramerate/src/com/android/testframerate/
TestFramerateView.java 53 float fps = 1000000.f / elapsedTime_us; local
55 Log.v(TAG, "Long frame: " + elapsedTime_us/1000.f + " ms (" + fps + " fps)");
  /hardware/libhardware/include/hardware/
fb.h 59 const float fps; member in struct:framebuffer_device_t
  /system/extras/tests/framebuffer/
refresh.c 77 float fps = refreshRate / 1000.0f; local
106 fps
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
StatsAppState.java 140 * Attaches FPS statistics to guiNode and displays it on the screen.
156 * above FPS statistics line.
163 // move it up so it appears above fps text
191 int fps = (int) (frameCounter / secondCounter); local
192 fpsText.setText("Frames per second: " + fps);
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestSpatialAnim.java 50 int fps = 25; local
54 int totalFrames = (int) (fps * animTime);
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCHeadsUpDisplay.cpp 152 // Note that since we haven't finished the current frame, the FPS counter
165 // Create & measure FPS text.
166 String text(String::format("FPS: %5.1f", 1.0 / m_filteredFrameTime));
175 // Draw FPS text.
181 // Draw FPS graph.
192 double fps = 1.0 / (m_presentTimeHistoryInSec[j] - m_presentTimeHistoryInSec[i]); local
193 double p = 1 - ((fps - loFPS) / (hiFPS - loFPS));
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 75 int fps; member in struct:android::BootAnimation::Animation
  /hardware/libhardware/modules/gralloc/
framebuffer.cpp 223 float fps = refreshRate / 1000.0f; local
252 fps
268 module->fps = fps;
347 const_cast<float&>(dev->device.fps) = m->fps;
gralloc_priv.h 53 float fps; member in struct:private_module_t
  /hardware/msm7k/libgralloc/
framebuffer.cpp 240 float fps = refreshRate / 1000.0f; local
269 fps
285 module->fps = fps;
363 const_cast<float&>(dev->device.fps) = m->fps;
gralloc_priv.h 57 float fps; member in struct:private_module_t
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
ArmatureHelper.java 185 int fps = blenderContext.getBlenderKey().getFps(); local
204 tracks.add((BoneTrack) ipo.calculateTrack(boneIndex, 0, ipo.getLastFrame(), fps, false));
226 int fps = blenderContext.getBlenderKey().getFps(); local
238 tracks.add((BoneTrack) ipo.calculateTrack(boneIndex, 0, ipo.getLastFrame(), fps, false));
  /hardware/msm7k/libgralloc-qsd8k/
framebuffer.cpp 276 float fps = refreshRate / 1000.0f; local
305 fps
321 module->fps = fps;
399 const_cast<float&>(dev->device.fps) = m->fps;
gralloc_priv.h 77 float fps; member in struct:private_module_t
  /bionic/libc/kernel/common/media/
soc2030.h 116 int fps; member in struct:soc2030_mode
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/particles/
ParticlesHelper.java 163 int fps = blenderContext.getBlenderKey().getFps(); local
164 float lifetime = ((Number)particleSettings.getFieldValue("lifetime")).floatValue() / fps;
165 float randlife = ((Number)particleSettings.getFieldValue("randlife")).floatValue() / fps;
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimationFactory.java 112 protected int fps; field in class:AnimationFactory
161 * @param fps the number of frames per second for this animation (default is 30)
163 public AnimationFactory(float duration, String name, int fps) {
166 this.fps = fps;
167 totalFrames = (int) (fps * duration) + 1;
168 tpf = 1 / (float) fps;
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestRenderToMemory.java 95 private int fps; field in class:TestRenderToMemory.ImageDisplay
119 fps = frames;
125 g2d.drawString("FPS: "+fps, 0, getHeight() - 100);

Completed in 588 milliseconds

1 2 3