Home
last modified time | relevance | path

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

/cmsis-dsp-latest/dsppp/Include/dsppp/
Dmatrix.hpp250 struct IsDynamic<Matrix<P,R,C,Allocator>> struct
252 constexpr static bool value = (R<0) || (C<0);
256 struct IsDynamic<MatrixView<P,S>> struct
258 constexpr static bool value = true;
263 struct IsDynamic<const Matrix<P,R,C,Allocator>&> struct
265 constexpr static bool value = (R<0) || (C<0);
269 struct IsDynamic<const MatrixView<P,S>&> struct
271 constexpr static bool value = true;
654 struct IsDynamic<_Outer<LHS,RHS,DerivedOp>> struct
656 constexpr static vector_length_t value = IsDynamic<LHS>::value || IsDynamic<RHS>::value;
Dfusion.hpp139 struct IsDynamic struct
141 constexpr static bool value = is_scalar<T>();
658 struct IsDynamic<_Expr<DerivedOp>> struct
660 constexpr static bool value = IsDynamic<DerivedOp>::value;
664 struct IsDynamic<_Binary<LHS,RHS,DerivedOp>> struct
666 constexpr static bool value = IsDynamic<LHS>::value && IsDynamic<RHS>::value;
838 struct IsDynamic<_Unary<LHS,DerivedOp>> struct
840 constexpr static bool value = IsDynamic<LHS>::value;
Dvec.hpp293 struct IsDynamic<Vector<P,L,Allocator>> struct
295 constexpr static bool value = (L<0);
300 struct IsDynamic<const Vector<P,L,Allocator>&> struct
302 constexpr static bool value = (L<0);
306 struct IsDynamic<VectorView<T,stride>> struct
308 constexpr static bool value = true;
Dunroll.hpp141 struct IsDynamic<Merged<E...>> struct
143 constexpr static bool value = (... && IsDynamic<std::remove_reference_t<E>>::value);