Home
last modified time | relevance | path

Searched refs:totalFrames (Results 1 – 4 of 4) sorted by relevance

/frameworks/native/cmds/flatland/
DMain.cpp464 nsecs_t run(uint32_t warmUpFrames, uint32_t totalFrames) { in run() argument
484 for (uint32_t i = warmUpFrames; i < totalFrames; i++) { in run()
618 uint32_t totalFrames = 5; in runTest() local
623 runTime = double(r.run(warmUpFrames, totalFrames)); in runTest()
626 totalFrames *= 2; in runTest()
633 if (totalFrames - warmUpFrames > 16) { in runTest()
637 } else if (totalFrames == 5 && runTime > 200e6) { in runTest()
655 double sample = double(r.run(warmUpFrames, totalFrames)); in runTest()
676 printf("%6.3f", result / double(totalFrames - warmUpFrames) / 1e6); in runTest()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DThroughput.java26 public Throughput(int totalFrames, int periodFrames, long periodTime, int size) { in Throughput() argument
27 mTotalFrames = totalFrames; in Throughput()
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/performance/
DThroughput.java30 public Throughput(int totalFrames, int periodFrames, int periodTime, int pixels) { in Throughput() argument
31 mTotalFrames = totalFrames; in Throughput()
/frameworks/base/media/jni/soundpool/
DSoundPool.cpp764 uint32_t totalFrames = (kDefaultBufferCount * afFrameCount * sampleRate) / afSampleRate; in play() local
766 if(frameCount < totalFrames) { in play()
767 frameCount = totalFrames; in play()
797 uint32_t bufferFrames = (totalFrames + (kDefaultBufferCount - 1)) / kDefaultBufferCount; in play()