Home
last modified time | relevance | path

Searched refs:maxFrames (Results 1 – 10 of 10) sorted by relevance

/third_party/skia/tools/perf-canvaskit-puppeteer/
Dbenchmark.js35 function startTimingFrames(drawFn, surface, warmupFrames, maxFrames, timeoutMillis) { argument
37 const totalFrame = new Float32Array(maxFrames);
38 const withFlush = new Float32Array(maxFrames);
39 const withoutFlush = new Float32Array(maxFrames);
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/
DMultiChannelRecording.h33 MultiChannelRecording(int32_t channelCount, int32_t maxFrames) in MultiChannelRecording() argument
35 , mMaxFrames(maxFrames) { in MultiChannelRecording()
36 mData = new float[channelCount * maxFrames]; in MultiChannelRecording()
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/
Donscreen_logging.dart84 /// The `maxFrames` argument can be given to limit the stack to the given number
88 void debugPrintStack({String label, int maxFrames}) {
92 if (maxFrames != null) lines = lines.take(maxFrames);
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
DAudioRecordThread.java43 public AudioRecordThread(int frameRate, int channelCount, int maxFrames) { in AudioRecordThread() argument
46 mCaptureBuffer = new CircularCaptureBuffer(maxFrames); in AudioRecordThread()
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/analyzer/
DLatencyAnalyzer.h105 void allocate(int maxFrames) { in allocate() argument
106 mData = std::make_unique<float[]>(maxFrames); in allocate()
107 mMaxFrames = maxFrames; in allocate()
/third_party/vk-gl-cts/modules/glshared/
DglsCalibration.cpp331 const int maxFrames = 60; in recomputeParameters() local
332 …(m_params.targetMeasureDurationUs / m_calibrateIterations.back().frameTime), minFrames, maxFrames); in recomputeParameters()
/third_party/flutter/flutter/packages/flutter/lib/src/foundation/
Dassertions.dart745 /// The `maxFrames` argument can be given to limit the stack to the given number
749 void debugPrintStack({ String label, int maxFrames }) {
759 if (maxFrames != null)
760 lines = lines.take(maxFrames);
/third_party/flutter/flutter/packages/flutter/test/foundation/
Dassertions_test.dart13 debugPrintStack(label: 'Example label', maxFrames: 7);
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
Dmtl_utils.mm71 static const size_t maxFrames = var ? std::atoi(var) : 100;
73 return maxFrames;
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp103145 uint32_t maxFrames; member
103148 : maxFrames(max) in MaxFrames()