Searched refs:tagCount (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/camera/
H A DVendorTagDescriptor.cpp66 int tagCount = vOps->get_tag_count(vOps); local
67 if (tagCount < 0 || tagCount > INT32_MAX) {
68 ALOGE("%s: tag count %d from vendor ops is invalid.", __FUNCTION__, tagCount);
73 LOG_ALWAYS_FATAL_IF(tagArray.resize(tagCount) != tagCount,
74 "%s: too many (%u) vendor tags defined.", __FUNCTION__, tagCount);
79 desc->mTagCount = tagCount;
84 for (size_t i = 0; i < static_cast<size_t>(tagCount); ++i) {
117 for (size_t i = 0; i < static_cast<size_t>(tagCount);
[all...]
/frameworks/av/camera/tests/
H A DVendorTagDescriptorTests.cpp100 int tagCount = vDesc->getTagCount(); local
101 EXPECT_EQ(tagCount, vOps->get_tag_count(vOps));
103 uint32_t descTagArray[tagCount];
104 uint32_t opsTagArray[tagCount];
114 for (int i = 0; i < tagCount; ++i) {
143 int tagCount = vDescOriginal->getTagCount(); local
144 ASSERT_EQ(tagCount, vDescParceled->getTagCount());
146 uint32_t descTagArray[tagCount];
147 uint32_t desc2TagArray[tagCount];
157 for (int i = 0; i < tagCount;
[all...]

Completed in 75 milliseconds