Home | History | Annotate | Download | only in util

Lines Matching defs:structs

57      * \param Params types of codec 2.0 structs (or parameters) to describe
61 std::vector<C2StructDescriptor> structs;
62 addStructDescriptors(structs, (_Tuple<Params...> *)nullptr);
79 * \param structs List of structure descriptors to add support for
82 std::vector<C2StructDescriptor> &structs, _Tuple<> *);
89 * \param Params rest of the structs
90 * \param structs Temporary list of structure descriptors used to optimize the operation.
94 std::vector<C2StructDescriptor> &structs, _Tuple<T, Params...> *) {
95 structs.emplace_back((T*)nullptr);
96 addStructDescriptors(structs, (_Tuple<Params...> *)nullptr);