HomeSort by relevance Sort by last modified time
    Searched defs:totalFrames (Results 1 - 8 of 8) sorted by null

  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
ISACHist.cc 149 unsigned long totalFrames = 0;
152 totalFrames += hist[n];
158 printf("\nTotal number of Frames %lu\n\n", totalFrames);
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestSpatialAnim.java 54 int totalFrames = (int) (fps * animTime);
55 float dT = animTime / totalFrames, t = 0;
56 float dX = totalXLength / totalFrames, x = 0;
57 float[] times = new float[totalFrames];
58 Vector3f[] translations = new Vector3f[totalFrames];
59 Quaternion[] rotations = new Quaternion[totalFrames];
60 Vector3f[] scales = new Vector3f[totalFrames];
61 for (int i = 0; i < totalFrames; ++i) {
  /packages/apps/Camera/perftests/panorama/
benchmark.cpp 70 int totalFrames = loadImages(basename, width, height);
72 if (totalFrames == 0) {
78 printf("%d frames loaded\n", totalFrames);
88 for (int i = 0; i < totalFrames; i++) {
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimationFactory.java 120 protected int totalFrames;
167 totalFrames = (int) (fps * duration) + 1;
169 times = new float[totalFrames];
170 translations = new Vector3f[totalFrames];
171 rotations = new Quaternion[totalFrames];
172 scales = new Vector3f[totalFrames];
173 keyFramesTranslation = new Vector3f[totalFrames];
175 keyFramesScale = new Vector3f[totalFrames];
177 keyFramesRotation = new Rotation[totalFrames];
335 if (keyFrameIndex < 0 || keyFrameIndex > totalFrames) {
    [all...]
  /frameworks/av/media/libmedia/
SoundPool.cpp 580 uint32_t totalFrames = (kDefaultBufferCount * afFrameCount * sampleRate) / afSampleRate;
581 uint32_t bufferFrames = (totalFrames + (kDefaultBufferCount - 1)) / kDefaultBufferCount;
591 if(frameCount < totalFrames) {
592 frameCount = totalFrames;
  /frameworks/native/cmds/flatland/
Main.cpp 465 nsecs_t run(uint32_t warmUpFrames, uint32_t totalFrames) {
485 for (uint32_t i = warmUpFrames; i < totalFrames; i++) {
619 uint32_t totalFrames = 5;
624 runTime = double(r.run(warmUpFrames, totalFrames));
627 totalFrames *= 2;
634 if (totalFrames - warmUpFrames > 16) {
638 } else if (totalFrames == 5 && runTime > 200e6) {
656 double sample = double(r.run(warmUpFrames, totalFrames));
677 printf("%6.3f", result / double(totalFrames - warmUpFrames) / 1e6);
  /external/chromium_org/v8/src/
debug-debugger.js     [all...]
  /external/v8/src/
debug-debugger.js     [all...]

Completed in 912 milliseconds