Home
last modified time | relevance | path

Searched defs:StaticLength (Results 1 – 4 of 4) sorted by relevance

/cmsis-dsp-latest/dsppp/Include/dsppp/
Dmatrix.hpp224 struct StaticLength<Matrix<P,R,C,Allocator>> struct
226 constexpr static vector_length_t value = (R*C<0) ? 0 : R*C;
230 struct StaticLength<MatrixView<P,S>> struct
232 constexpr static vector_length_t value = 0;
237 struct StaticLength<const Matrix<P,R,C,Allocator>&> struct
239 constexpr static vector_length_t value = (R*C<0) ? 0 : R*C;
243 struct StaticLength<const MatrixView<P,S>&> struct
245 constexpr static vector_length_t value = 0 ;
648 struct StaticLength<_Outer<LHS,RHS,DerivedOp>> struct
650 constexpr static vector_length_t value = StaticLength<LHS>::value * StaticLength<RHS>::value;
Dfusion.hpp62 struct StaticLength struct
64 constexpr static vector_length_t value = 0;
670 struct StaticLength<_Expr<DerivedOp>> struct
672 constexpr static vector_length_t value = StaticLength<DerivedOp>::value;
676 struct StaticLength<_Binary<LHS,RHS,DerivedOp>> struct
678 constexpr static vector_length_t value = static_length<LHS,RHS>();
844 struct StaticLength<_Unary<LHS,DerivedOp>> struct
846 constexpr static vector_length_t value = StaticLength<LHS>::value;
Dvec.hpp265 struct StaticLength<Vector<P,L,Allocator>> struct
267 constexpr static vector_length_t value = (L<0) ? 0 : L;
272 struct StaticLength<const Vector<P,L,Allocator>&> struct
274 constexpr static vector_length_t value = (L<0) ? 0 : L;
Dunroll.hpp173 struct StaticLength<Merged<E...>> struct
175 … static vector_length_t value = max_vec_length(StaticLength<std::remove_reference_t<E>>::value...);