Searched refs:Vector_Base (Results 1 – 10 of 10) sorted by relevance
/cmsis-dsp-latest/dsppp/Include/dsppp/ |
D | vector_impl.hpp | 38 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 …]
|
D | matrix_impl.hpp | 174 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 …]
|
D | vec.hpp | 31 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>&>
|
D | vector_view.hpp | 68 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()
|
D | forward.hpp | 8 struct Vector_Base;
|
D | matrix_view.hpp | 64 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/ |
D | common_tests.cpp | 14 void init_array(Vector_Base<float16_t> &pDst,std::size_t nb)
|
D | common_tests.h | 83 void init_array(Vector_Base<T> &pDst,std::size_t nb) in init_array()
|
/cmsis-dsp-latest/Documentation/Doxygen/src/ |
D | vector.md | 11 struct Vector:Vector_Base<P> 17 * `Vector_Base<P>` is providing the storage. A vector owns its storage buffer.
|
D | memory_allocator.md | 17 struct Vector:Vector_Base<P>
|