Home
last modified time | relevance | path

Searched refs:strukt (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/media/codec2/vndk/util/
DC2InterfaceHelper.cpp30 for (C2StructDescriptor &strukt : structs) { in addStructDescriptors()
32 addStructDescriptor(std::move(strukt)); in addStructDescriptors()
47 void C2ReflectorHelper::addStructDescriptor(C2StructDescriptor &&strukt) { in addStructDescriptor() argument
48 if (_mStructs.find(strukt.coreIndex()) != _mStructs.end()) { in addStructDescriptor()
53 for (const C2FieldDescriptor &fd : strukt) { in addStructDescriptor()
58 << fd.name() << " of struct #" << strukt.coreIndex(); in addStructDescriptor()
62 _mStructs.emplace(strukt.coreIndex(), strukt); in addStructDescriptor()
70 Impl(ParamRef param, C2StringLiteral name, C2StructDescriptor &&strukt) in Impl() argument
71 : mParam(param), mName(name), _mStruct(strukt) { } in Impl()
256 ParamRef param, C2StringLiteral name, C2StructDescriptor &&strukt) in ParamHelper() argument
[all …]
/frameworks/av/media/codec2/core/include/
DC2Param.h1310 #define DESCRIBE_TEMPLATED_C2STRUCT(strukt, list...) \
1311 _DESCRIBE_TEMPLATABLE_C2STRUCT(template<>, strukt, __C2_GENERATE_GLOBAL_VARS__, list)
1320 #define _DESCRIBE_TEMPLATABLE_C2STRUCT(template, strukt, enabled, list...) \
1321 __DESCRIBE_TEMPLATABLE_C2STRUCT(template, strukt, enabled, list)
1325 #define __DESCRIBE_TEMPLATABLE_C2STRUCT(template, strukt, enabled, list...) \
1326 ___DESCRIBE_TEMPLATABLE_C2STRUCT##enabled(template, strukt, list)
1328 #define ___DESCRIBE_TEMPLATABLE_C2STRUCT(template, strukt, list...) \
1330 const std::vector<C2FieldDescriptor> strukt::FieldList() { return list; }
1332 #define ___DESCRIBE_TEMPLATABLE_C2STRUCT__C2_GENERATE_GLOBAL_VARS__(template, strukt, list...)
/frameworks/av/media/codec2/vndk/include/util/
DC2InterfaceHelper.h71 void addStructDescriptor(C2StructDescriptor &&strukt);
/frameworks/av/media/codec2/tests/
DC2Param_test.cpp691 C2TestAStruct *strukt = (C2TestAStruct *)info; in TEST_F() local
695 int32_t *strukt_s32 = &(strukt->*s32ptr); in TEST_F()
698 EXPECT_EQ(264u, (uintptr_t)strukt); in TEST_F()