Home
last modified time | relevance | path

Searched refs:Vector_Base (Results 1 – 10 of 10) sorted by relevance

/cmsis-dsp-latest/dsppp/Include/dsppp/
Dvector_impl.hpp38 struct Vector_Base { struct
107 friend std::ostream& operator<< (std::ostream& stream, const Vector_Base<P>& other) { in operator <<()
124 virtual ~Vector_Base(){}; in ~Vector_Base() argument
126 Vector_Base(Vector_Base&& other) : in Vector_Base() function
135 Vector_Base(const Vector_Base& other) = delete;
242 Vector_Base() = delete;
244 explicit Vector_Base(vector_length_t length, char *val): in Vector_Base() argument
248 explicit Vector_Base(vector_length_t length, char *val,P init_val): in Vector_Base() argument
255 Vector_Base& operator=(const Vector_Base& other) in operator =() argument
267 Vector_Base& operator=(Vector_Base&& other) = delete;
[all …]
Dmatrix_impl.hpp174 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs*stride()+cs),nb_rows,nb_cols)); in sub()
188 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs*stride()+cs),nb_rows,nb_cols)); in sub()
202 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs.start*stride()+cs),nb_rows,nb_cols)); in sub()
216 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs.start*stride()+cs),nb_rows,nb_cols)); in sub()
231 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs*stride()+cs.start),nb_rows,nb_cols)); in sub()
245 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs*stride()+cs.start),nb_rows,nb_cols)); in sub()
259 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs.start*stride()+cs.start),nb_rows,nb_cols)); in sub()
273 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs.start*stride()+cs.start),nb_rows,nb_cols)); in sub()
292 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs*stride()+cs),nb_rows,nb_cols)); in sub()
311 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs*stride()+cs),nb_rows,nb_cols)); in sub()
[all …]
Dvec.hpp31 struct VecRef<Vector_Base<T>>
34 static type ref(const Vector_Base<T>&a){ in ref()
218 struct IsVector<const Vector_Base<P>&>
224 struct IsVector<Vector_Base<P>>
245 struct ElementType<Vector_Base<P>>
251 struct ElementType<const Vector_Base<P>&>
Dvector_view.hpp68 explicit VectorView(const Vector_Base<T> &v): in VectorView()
78 explicit VectorView(const Vector_Base<T> &v,const index_t start,const index_t stop): in VectorView()
521 explicit VectorView(const Vector_Base<T> &v,const index_t stride): in VectorView()
533 …explicit VectorView(const Vector_Base<T> &v,const index_t start,const index_t stop,const index_t s… in VectorView()
Dforward.hpp8 struct Vector_Base;
Dmatrix_view.hpp64 explicit MatrixView(const Vector_Base<T> &v, in MatrixView()
545 explicit MatrixView(const Vector_Base<T> &v, in MatrixView()
1035 explicit MatrixView(const Vector_Base<T> &v, in MatrixView()
/cmsis-dsp-latest/dsppp/tests/
Dcommon_tests.cpp14 void init_array(Vector_Base<float16_t> &pDst,std::size_t nb)
Dcommon_tests.h83 void init_array(Vector_Base<T> &pDst,std::size_t nb) in init_array()
/cmsis-dsp-latest/Documentation/Doxygen/src/
Dvector.md11 struct Vector:Vector_Base<P>
17 * `Vector_Base<P>` is providing the storage. A vector owns its storage buffer.
Dmemory_allocator.md17 struct Vector:Vector_Base<P>