Searched refs:blobValue (Results 1 – 1 of 1) sorted by relevance
/frameworks/av/media/codec2/tests/ |
D | C2Param_test.cpp | 2327 …std::unique_ptr<BlobSetting> blobValue = BlobSetting::AllocUnique(6, C2ConstMemoryBlock<uint8_t>(i… in TEST_F() local 2328 …static_assert(std::is_same<decltype(blobValue->m.value), uint8_t[]>::value, "should be uint8_t[]"); in TEST_F() 2329 EXPECT_EQ(0, memcmp(blobValue->m.value, "ABCD\0", 6)); in TEST_F() 2330 EXPECT_EQ(6u, blobValue->flexCount()); in TEST_F() 2331 std::vector<C2FieldDescriptor> fields = blobValue->FieldList(); in TEST_F() 2337 blobValue = BlobSetting::AllocUnique(3, C2ConstMemoryBlock<uint8_t>(initValue)); in TEST_F() 2338 EXPECT_EQ(0, memcmp(blobValue->m.value, "ABC", 3)); in TEST_F() 2339 EXPECT_EQ(3u, blobValue->flexCount()); in TEST_F()
|