Home
last modified time | relevance | path

Searched defs:Complexity (Results 1 – 2 of 2) sorted by relevance

/cmsis-dsp-latest/dsppp/Include/dsppp/
Dfusion.hpp21 struct Complexity struct
23 constexpr static int value = 0;
601 struct Complexity<_Expr<DerivedOp>> struct
603 constexpr static int value = Complexity<DerivedOp>::value;
613 struct Complexity<_Binary<LHS,RHS,DerivedOp>> struct
615 constexpr static int lhsv = Complexity<LHS>::value;
616 constexpr static int rhsv = Complexity<RHS>::value;
617 constexpr static int value = lhsv + rhsv + 1;
814 struct Complexity<_Unary<LHS,DerivedOp>> struct
816 constexpr static int value = 1 + Complexity<LHS>::value;
Dmatrix.hpp660 struct Complexity<_Outer<LHS,RHS,DerivedOp>> struct
662 constexpr static int lhsv = Complexity<LHS>::value;
663 constexpr static int rhsv = Complexity<RHS>::value;
664 constexpr static int value = lhsv + rhsv + 1;