Home
last modified time | relevance | path

Searched refs:STRUCT_FLAG (Results 1 – 7 of 7) sorted by relevance

/frameworks/av/media/codec2/vndk/util/
DC2InterfaceUtils.cpp970 if (mHead->field.type() & C2FieldDescriptor::STRUCT_FLAG) { in C2FieldUtilsFieldsIterator()
971 C2Param::CoreIndex index = { mHead->field.type() &~C2FieldDescriptor::STRUCT_FLAG }; in C2FieldUtilsFieldsIterator()
988 if (mHead->field.type() & C2FieldDescriptor::STRUCT_FLAG) { in increment()
989 C2Param::CoreIndex index = { mHead->field.type() &~C2FieldDescriptor::STRUCT_FLAG }; in increment()
1173 if ((mHead->field.type() & C2FieldDescriptor::STRUCT_FLAG) == 0) { in C2FieldUtilsFieldLocator()
1176 index = C2Param::CoreIndex(mHead->field.type() &~ C2FieldDescriptor::STRUCT_FLAG); in C2FieldUtilsFieldLocator()
DC2InterfaceHelper.cpp54 if (fd.type() & C2FieldDescriptor::STRUCT_FLAG) { in addStructDescriptor()
55 C2Param::CoreIndex coreIndex = fd.type() &~ C2FieldDescriptor::STRUCT_FLAG; in addStructDescriptor()
564 if (field.type() >= C2FieldDescriptor::STRUCT_FLAG) { in GetBaseOffset()
567 reflector, field.type() & ~C2FieldDescriptor::STRUCT_FLAG, in GetBaseOffset()
DC2Debug.cpp62 default: return (i & C2FieldDescriptor::STRUCT_FLAG) ? "struct" : def; in asString()
/frameworks/av/media/codec2/tests/
DC2SampleComponent_test.cpp44 if (fd.type() & FD::STRUCT_FLAG) { in PrintTo()
45 *os << "struct-" << (fd.type() & ~FD::STRUCT_FLAG); in PrintTo()
DC2Param_test.cpp42 if (fd.type() & FD::STRUCT_FLAG) { in PrintTo()
43 *os << "struct-" << (fd.type() & ~FD::STRUCT_FLAG); in PrintTo()
98 const static FD::type_t TYPE = (FD::type_t)(CORE_INDEX | FD::STRUCT_FLAG);
/frameworks/av/media/codec2/core/include/
DC2Param.h985 STRUCT_FLAG = 0x20000, ///< structs. Marked with this flag in addition to their coreIndex. enumerator
1098 return (type_t)(T::CORE_INDEX | STRUCT_FLAG); in GetType()
/frameworks/av/media/codec2/sfplugin/
DReflectedParamUpdater.cpp150 if (it->type() & C2FieldDescriptor::STRUCT_FLAG) { in addParamStructDesc()