Home
last modified time | relevance | path

Searched refs:frameCount (Results 1 - 23 of 23) sorted by relevance

/third_party/skia/third_party/externals/oboe/src/flowgraph/
H A DFlowGraphNode.cpp26 int32_t frameCount = numFrames; in pullData() local
34 frameCount = port.get().pullData(callCount, frameCount); in pullData()
37 if (frameCount > 0) { in pullData()
38 frameCount = onProcess(frameCount); in pullData()
40 mLastFrameCount = frameCount; in pullData()
42 frameCount = mLastFrameCount; in pullData()
44 return frameCount; in pullData()
/third_party/vk-gl-cts/modules/egl/
H A DteglGLES2SharedRenderingPerfTests.cpp76 int frameCount; member
661 for (int frameNdx = 0; frameNdx < m_config.frameCount; frameNdx++) in render()
988 log << TestLog::Message << "Total triangles rendered: : " << config.triangleCount * config.drawCallCount * config.frameCount * config.perThreadContextCount * config.threadCount << TestLog::EndMessage; in logTestConfig()
991 log << TestLog::Message << "Number of frames rendered with each context: " << config.frameCount << TestLog::EndMessage; in logTestConfig()
1095 basicConfig.frameCount = 10; in init()
1144 smallConfig.frameCount = 10; in init()
1147 smallConfig.frameCount *= 4; in init()
1156 bigConfig.frameCount = 10; in init()
1159 bigConfig.frameCount *= 4; in init()
1192 smallConfig.frameCount in init()
[all...]
H A DteglGetFrameTimestampsTests.cpp624 const size_t frameCount = 120; in executeForConfig() local
625 std::vector<FrameTimes> frameTimes(frameCount); in executeForConfig()
626 for (size_t i = 0; i < frameCount; i++) in executeForConfig()
666 const float colorAngle = (static_cast<float>(i) / static_cast<float>(frameCount)) * 6.28318f; in executeForConfig()
/third_party/skia/src/codec/
H A DSkHeifCodec.cpp173 size_t frameCount = 1; in MakeFromStream() local
176 if (heifDecoder->getSequenceInfo(&sequenceInfo, &frameCount) && in MakeFromStream()
177 frameCount > 1) { in MakeFromStream()
199 std::move(info), heifDecoder.release(), orientation, frameCount > 1, format)); in MakeFromStream()
310 size_t frameCount; in onGetFrameCount() local
312 if (!fHeifDecoder->getSequenceInfo(&frameInfo, &frameCount) in onGetFrameCount()
313 || frameCount <= 1) { in onGetFrameCount()
317 fFrameHolder.reserve(frameCount); in onGetFrameCount()
318 for (size_t i = 0; i < frameCount; i++) { in onGetFrameCount()
H A DSkStubHeifDecoderAPI.h75 virtual bool getSequenceInfo(HeifFrameInfo* frameInfo, size_t *frameCount) = 0;
106 bool getSequenceInfo(HeifFrameInfo* frameInfo, size_t *frameCount) override {
H A DSkWebpCodec.cpp241 const uint32_t frameCount = WebPDemuxGetI(fDemux, WEBP_FF_FRAME_COUNT); in onGetFrameCount() local
242 if (oldFrameCount == frameCount) { in onGetFrameCount()
244 return frameCount; in onGetFrameCount()
247 fFrameHolder.reserve(frameCount); in onGetFrameCount()
249 for (uint32_t i = oldFrameCount; i < frameCount; i++) { in onGetFrameCount()
H A DSkCodec.cpp765 const int frameCount = this->getFrameCount(); in getFrameInfo() local
766 SkASSERT(frameCount >= 0); in getFrameInfo()
767 if (frameCount <= 0) { in getFrameInfo()
771 if (frameCount == 1 && !this->onGetFrameInfo(0, nullptr)) { in getFrameInfo()
776 std::vector<FrameInfo> result(frameCount); in getFrameInfo()
777 for (int i = 0; i < frameCount; ++i) { in getFrameInfo()
/third_party/skia/tests/
H A DCodecAnimTest.cpp309 int frameCount; in DEF_TEST() local
315 frameCount = frameInfos.empty() ? 1 : frameInfos.size(); in DEF_TEST()
318 frameCount = codec->getFrameCount(); in DEF_TEST()
322 if (frameCount != expected) { in DEF_TEST()
324 rec.fName, expected, frameCount); in DEF_TEST()
329 if (1 == frameCount) { in DEF_TEST()
333 for (int i = 0; i < frameCount; i++) { in DEF_TEST()
401 std::vector<SkBitmap> cachedFrames(frameCount); in DEF_TEST()
436 for (int i = 0; i < frameCount; i++) { in DEF_TEST()
H A DAnimatedImageTest.cpp237 const int frameCount = codec->getFrameCount(); in DEF_TEST() local
251 std::vector<SkBitmap> expected(frameCount); in DEF_TEST()
252 std::vector<sk_sp<SkPicture>> pictures(frameCount); in DEF_TEST()
253 for (int i = 0; i < frameCount; i++) { in DEF_TEST()
266 if (i >= frameCount - 2) { in DEF_TEST()
273 for (int i = 0; i < frameCount; i++) { in DEF_TEST()
/third_party/skia/tools/
H A Dconvert-to-nia.cpp150 const int frameCount = codec->getFrameCount(); in main() local
151 if (frameCount == 0) { in main()
156 // for still (not animated) images, even though frameCount should be 1. in main()
160 for (int i = 0; i < frameCount; i++) { in main()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DMaxTextureSizeTest.cpp243 const int frameCount = 64; in TEST_P() local
244 for (int i = 0; i < frameCount; i++) in TEST_P()
249 GLubyte clearRed = static_cast<GLubyte>((float(i) / frameCount) * 255); in TEST_P()
/third_party/skia/modules/particles/src/
H A DSkParticleDrawable.cpp132 int frameCount = cols * rows; variable
135 int frame = static_cast<int>(spriteFrames[i] * frameCount + 0.5f);
136 frame = SkTPin(frame, 0, frameCount - 1);
/third_party/node/deps/v8/src/inspector/
H A Dv8-stack-trace-impl.cc40 int frameCount = std::min(v8StackTrace->GetFrameCount(), maxStackSize); in toFramesVector() local
45 "toFramesVector", "frameCount", frameCount); in toFramesVector()
47 std::vector<std::shared_ptr<StackFrame>> frames(frameCount); in toFramesVector()
48 for (int i = 0; i < frameCount; ++i) { in toFramesVector()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
H A DvktDrawMultipleInterpolationTests.cpp796 const deUint32 frameCount = static_cast<deUint32>(COUNT); in iterate() local
797 std::vector<de::SharedPtr<Image> > resImages (frameCount); in iterate()
803 tcu::ConstPixelBufferAccess resFrames[frameCount]; in iterate()
804 tcu::ConstPixelBufferAccess refFrames[frameCount]; in iterate()
805 tcu::ConstPixelBufferAccess refSRSFrames[frameCount]; // Using sample rate shading. in iterate()
836 for (deUint32 resNdx = 0; resNdx < frameCount; resNdx++) in iterate()
850 for (deUint32 refNdx = 0; refNdx < frameCount; refNdx++) in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/
H A DvktDrawMultipleInterpolationTests.cpp798 const deUint32 frameCount = static_cast<deUint32>(COUNT); in iterate() local
799 std::vector<de::SharedPtr<Image> > resImages (frameCount); in iterate()
805 tcu::ConstPixelBufferAccess resFrames[frameCount]; in iterate()
806 tcu::ConstPixelBufferAccess refFrames[frameCount]; in iterate()
807 tcu::ConstPixelBufferAccess refSRSFrames[frameCount]; // Using sample rate shading. in iterate()
838 for (deUint32 resNdx = 0; resNdx < frameCount; resNdx++) in iterate()
852 for (deUint32 refNdx = 0; refNdx < frameCount; refNdx++) in iterate()
/third_party/lz4/programs/
H A Dlz4io.c1433 unsigned long long frameCount; member
1614 && cfinfo->frameCount != 0) in LZ4IO_getCompressedFileInfo()
1623 cfinfo->frameCount + 1, in LZ4IO_getCompressedFileInfo()
1646 if (cfinfo->frameSummary.frameType != legacyFrame && cfinfo->frameCount != 0) cfinfo->eqFrameTypes = 0; in LZ4IO_getCompressedFileInfo()
1657 cfinfo->frameCount + 1, in LZ4IO_getCompressedFileInfo()
1667 if (cfinfo->frameSummary.frameType != skippableFrame && cfinfo->frameCount != 0) cfinfo->eqFrameTypes = 0; in LZ4IO_getCompressedFileInfo()
1679 cfinfo->frameCount + 1, in LZ4IO_getCompressedFileInfo()
1698 cfinfo->frameCount++; in LZ4IO_getCompressedFileInfo()
1735 cfinfo.frameCount, in LZ4IO_displayCompressedFilesInfo()
/third_party/ffmpeg/libavdevice/
H A Ddecklink_dec.cpp858 if (0 == ctx->frameCount && cctx->timestamp_align) { in VideoInputFrameArrived()
867 ctx->frameCount++; in VideoInputFrameArrived()
876 if (ctx->frameCount % 25 == 0) { in VideoInputFrameArrived()
880 ctx->frameCount, in VideoInputFrameArrived()
906 "- Frames dropped %u\n", ctx->frameCount, ++ctx->dropped); in VideoInputFrameArrived()
912 "- Frames dropped %u\n", ctx->frameCount, ++ctx->dropped); in VideoInputFrameArrived()
945 ctx->tc_seen = ctx->frameCount; in VideoInputFrameArrived()
959 "- Frames dropped %u\n", ctx->frameCount, ++ctx->dropped); in VideoInputFrameArrived()
H A Ddecklink_common.h122 unsigned long frameCount; member
/third_party/skia/src/gpu/
H A DGrResourceCache.h343 fFrameInfo.frameCount++; in beginFrame()
560 uint32_t frameCount : 31; member
H A DGrResourceCache.cpp1198 if (fFrameInfo.frameCount != fLastFrameCount) { // the next frame arrives in allowToPurge()
1204 fLastFrameCount = fFrameInfo.frameCount; in allowToPurge()
/third_party/glfw/tests/
H A Dtriangle-vulkan.c219 int32_t frameCount; member
1512 if (demo->frameCount != INT32_MAX && demo->curFrame == demo->frameCount) in demo_run()
1983 demo->frameCount = INT32_MAX; in demo_init()
1998 if (strcmp(argv[i], "--c") == 0 && demo->frameCount == INT32_MAX && in demo_init()
1999 i < argc - 1 && sscanf(argv[i + 1], "%d", &demo->frameCount) == 1 && in demo_init()
2000 demo->frameCount >= 0) { in demo_init()
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
H A DTracePerfTest.cpp118 uint32_t frameCount() const in frameCount() function in __anon20281::TracePerfTest
127 return static_cast<int>(frameCount());
1165 mStepsToRun = frameCount(); in TracePerfTest()
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
H A DFrameCapture.cpp1266 uint32_t frameCount, in WriteShareGroupCppSetupReplay()
6101 unsigned int frameCount = getFrameCount(); in writeJSON() local
6112 json.addScalar("FrameEnd", frameCount); in writeJSON()
6294 uint32_t frameCount = getFrameCount(); in writeMainContextCppReplay() local
6380 if (frameIndex == frameCount) in writeMainContextCppReplay()
1261 WriteShareGroupCppSetupReplay(ReplayWriter &replayWriter, bool compression, const std::string &outDir, const std::string &captureLabel, uint32_t frameIndex, uint32_t frameCount, const std::vector<CallCapture> &setupCalls, ResourceTracker *resourceTracker, std::vector<uint8_t> *binaryData, bool serializeStateEnabled, gl::ContextID windowSurfaceContextID) WriteShareGroupCppSetupReplay() argument

Completed in 74 milliseconds