Home
last modified time | relevance | path

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

/external/autotest/client/deps/webgl_mpd/src/
Dcros_fps.js11 this.totalFrames = 0;
20 this.frameDataBuf[this.totalFrames % this.buffer_size] = new crosFrameData(
21 this.totalFrames, startTime, frameElapsedTime, jsElapsedTime);
22 this.totalFrames += 1;
28 this.totalFrames = 0;
33 return this.totalFrames / this.totalFrameElapsedTime;
37 return this.totalJSElapsedTime / this.totalFrames;
/external/llvm-project/lldb/test/API/tools/lldb-vscode/stackTrace/
DTestVSCode_stackTrace.py78 (stackFrames, totalFrames) = self.get_stackFrames_and_totalFramesCount()
82 self.assertEquals(totalFrames, frameCount,
137 (stackFrames, totalFrames) = self.get_stackFrames_and_totalFramesCount(
143 self.assertEquals(totalFrames, frameCount,
/external/skia/tools/lottie-web-perf/
Dlottie-web-perf.js107 const totalFrames = lottieJSONContent.op - lottieJSONContent.ip; constant
108 console.log('Total frames: ' + totalFrames);
122 const targetURL = "http://localhost:" + options.port + "/#" + totalFrames;
/external/llvm-project/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/
Dlldbvscode_testcase.py154 totalFrames = self.get_dict_value(response, ['body', 'totalFrames'])
155 self.assertTrue(totalFrames > 0,
158 return (stackFrames, totalFrames)
163 (stackFrames, totalFrames) = self.get_stackFrames_and_totalFramesCount(
/external/oboe/src/fifo/
DFifoControllerBase.h40 FifoControllerBase(uint32_t totalFrames);
/external/toolchain-utils/android_bench_suite/
Dpanorama.diff176 + int totalFrames = loadImages(basename, width, height);
178 + if (totalFrames == 0) {
184 + printf("%d frames loaded\n", totalFrames);
194 + for (int i = 0; i < totalFrames; i++) {
/external/swiftshader/src/Vulkan/Debug/
DServer.cpp228 response.totalFrames = stack.size(); in Impl()
/external/llvm-project/lldb/tools/lldb-vscode/
Dlldb-vscode.cpp2364 const auto totalFrames = thread.GetNumFrames(); in request_stackTrace() local
2365 body.try_emplace("totalFrames", totalFrames); in request_stackTrace()