Searched defs:VecRef (Results 1 – 2 of 2) sorted by relevance
/cmsis-dsp-latest/dsppp/Include/dsppp/ |
D | vec.hpp | 31 struct VecRef<Vector_Base<T>> struct 33 typedef VectorView<T,1> type; 34 static type ref(const Vector_Base<T>&a){ in ref() 40 struct VecRef<VectorView<T,S>> struct 42 typedef VectorView<T,S> type; 43 static type ref(const VectorView<T,S>&a){ in ref() 51 struct VecRef<Vector<P,L,A>,(L<0)> struct 54 typedef VectorView<P,1> type; 55 … static VectorView<P,1> ref(const Vector<P,L,A>&a,typename std::enable_if<(L<0)>::type* = nullptr){ in ref() 63 struct VecRef<Vector<P,L,A>,(L>0)> struct [all …]
|
D | matrix.hpp | 430 struct VecRef<MatrixView<T,S>> struct 432 typedef MatrixView<T,S> type; 433 static type ref(const MatrixView<T,S>&a){ in ref() 440 struct VecRef<Matrix<P,R,C,A>,((R>0) && (C>0))> struct 442 typedef const Matrix<P,R,C,A>& type; 443 … static type ref(const Matrix<P,R,C,A>&a,typename std::enable_if<(R>0) && (C>0)>::type* = nullptr){ in ref() 450 struct VecRef<Matrix<P,R,C,A>,((R<0) || (C<0))> struct 452 typedef MatrixView<P,CONSTRAINED_DYNAMIC> type; 453 … static type ref(const Matrix<P,R,C,A>&a,typename std::enable_if<(R<0) || (C<0)>::type* = nullptr){ in ref() 683 struct VecRef<_Outer<LHS,RHS,OP>> struct [all …]
|