Home
last modified time | relevance | path

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

/cmsis-dsp-latest/dsppp/Include/dsppp/
Dvector_view.hpp48 constexpr static vector_length_t compute_length(const index_t start,const index_t stop) in compute_length() function
61 v_(v+start),nb_samples_(compute_length(start,stop)){}; in VectorView()
69 v_(v.ptr()),nb_samples_(compute_length(0,v.length())){}; in VectorView()
79 v_(v.ptr()+start),nb_samples_(compute_length(start,stop)){}; in VectorView()
495 … vector_length_t compute_length(const index_t start,const index_t stop,const index_t stride) const in compute_length() function
509 v_(v+start),nb_samples_(compute_length(start,stop,stride)),stride_(stride){}; in VectorView()
522 v_(v.ptr()),nb_samples_(compute_length(0,v.length(),stride)),stride_(stride){}; in VectorView()
534 v_(v.ptr()+start),nb_samples_(compute_length(start,stop,stride)),stride_(stride){}; in VectorView()