Home
last modified time | relevance | path

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

/hardware/google/av/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 …]
/hardware/google/av/codec2/include/
DC2Param.h1305 #define DESCRIBE_TEMPLATED_C2STRUCT(strukt, list...) \
1306 _DESCRIBE_TEMPLATABLE_C2STRUCT(template<>, strukt, __C2_GENERATE_GLOBAL_VARS__, list)
1315 #define _DESCRIBE_TEMPLATABLE_C2STRUCT(template, strukt, enabled, list...) \
1316 __DESCRIBE_TEMPLATABLE_C2STRUCT(template, strukt, enabled, list)
1320 #define __DESCRIBE_TEMPLATABLE_C2STRUCT(template, strukt, enabled, list...) \
1321 ___DESCRIBE_TEMPLATABLE_C2STRUCT##enabled(template, strukt, list)
1323 #define ___DESCRIBE_TEMPLATABLE_C2STRUCT(template, strukt, list...) \
1325 const std::vector<C2FieldDescriptor> strukt::FieldList() { return list; }
1327 #define ___DESCRIBE_TEMPLATABLE_C2STRUCT__C2_GENERATE_GLOBAL_VARS__(template, strukt, list...)
/hardware/google/av/codec2/vndk/include/util/
DC2InterfaceHelper.h71 void addStructDescriptor(C2StructDescriptor &&strukt);
/hardware/google/av/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()