/cmsis-dsp-latest/dsppp/Include/dsppp/ |
D | matrix_impl.hpp | 43 Slice(const index_t s,const index_t e):start(s),stop(e){}; in Slice() 46 const index_t start; member 199 const vector_length_t nb_rows = rs.stop - rs.start; in sub() 202 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs.start*stride()+cs),nb_rows,nb_cols)); in sub() 213 const vector_length_t nb_rows = rs.stop - rs.start; in sub() 216 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs.start*stride()+cs),nb_rows,nb_cols)); in sub() 229 const vector_length_t nb_cols = cs.stop - cs.start; in sub() 231 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs*stride()+cs.start),nb_rows,nb_cols)); in sub() 243 const vector_length_t nb_cols = cs.stop - cs.start; in sub() 245 return(MatrixView<P,C>(Vector_Base<P>::ptr(rs*stride()+cs.start),nb_rows,nb_cols)); in sub() [all …]
|
D | vector_view.hpp | 48 constexpr static vector_length_t compute_length(const index_t start,const index_t stop) in compute_length() 50 return(1+(stop-1 -start)/stride); in compute_length() 60 explicit VectorView(T *v,const vector_length_t start,const vector_length_t stop): in VectorView() 61 v_(v+start),nb_samples_(compute_length(start,stop)){}; in VectorView() 78 explicit VectorView(const Vector_Base<T> &v,const index_t start,const index_t stop): in VectorView() 79 v_(v.ptr()+start),nb_samples_(compute_length(start,stop)){}; in VectorView() 432 VectorView<T,S*stride> sub(const index_t start=0,const index_t stop=-1) in sub() 436 return(VectorView<T,S*stride>(v_,stride*start,stride*length())); in sub() 440 return(VectorView<T,S*stride>(v_,stride*start,stride*stop)); in sub() 454 const VectorView<T,S*stride> sub(const index_t start=0,const index_t stop=-1) const in sub() [all …]
|
D | matrix_view.hpp | 264 VectorView<T,1> row(const index_t i,const index_t start=0) in row() 266 return(VectorView<T,1>(v_,i*stride()+start,i*stride()+columns())); in row() 276 VectorView<T,1> row(const index_t i,const index_t start,const index_t stop) in row() 278 return(VectorView<T,1>(v_,i*stride()+start,i*stride()+stop)); in row() 287 const VectorView<T,1> row(const index_t i,const index_t start=0) const in row() 289 return(VectorView<T,1>(v_,i*stride()+start,i*stride()+columns())); in row() 299 const VectorView<T,1> row(const index_t i,const index_t start,const index_t stop) const in row() 301 return(VectorView<T,1>(v_,i*stride()+start,i*stride()+stop)); in row() 312 VectorView<T,CS*S> col(const index_t i,const index_t start=0) in col() 314 return(VectorView<T,CS*S>(v_,i+stride()*start,i+stride()*rows())); in col() [all …]
|
D | vector_impl.hpp | 602 VectorView<P,S> sub(const index_t start=0,const index_t stop=L) in sub() 604 return(VectorView<P,S>(*this,start,stop)); in sub() 608 const VectorView<P,S> sub(const index_t start=0,const index_t stop=L) const in sub() 610 return(VectorView<P,S>(*this,start,stop)); in sub() 904 VectorView<P,S> sub(const index_t start=0,const index_t stop=-1) in sub() 908 return(VectorView<P,S>(*this,start,Vector_Base<P>::length())); in sub() 912 return(VectorView<P,S>(*this,start,stop)); in sub() 917 const VectorView<P,S> sub(const index_t start=0,const index_t stop=-1) const in sub() 921 return(VectorView<P,S>(*this,start,Vector_Base<P>::length())); in sub() 925 return(VectorView<P,S>(*this,start,stop)); in sub()
|
/cmsis-dsp-latest/Testing/ |
D | addToRegDB.py | 90 start = "," 93 sql += " %s\n %s INTEGER" % (start,field) 94 start = "," 98 sql += "%s\n %s TEXT" % (start,field) 100 sql += "%s\n %s INTEGER" % (start,field) 102 sql += "%s\n %s REAL" % (start,field) 104 sql += "%s\n %s INTEGER" % (start,MKKEYFIELDID[field]) 106 sql += "%s\n %s TEXT" % (start,field) 108 sql += "%s\n %s INTEGER" % (start,field) 109 start = "," [all …]
|
D | addToDB.py | 86 start = "," 89 sql += " %s\n %s INTEGER" % (start,field) 90 start = "," 94 sql += "%s\n %s TEXT" % (start,field) 96 sql += "%s\n %s INTEGER" % (start,field) 98 sql += "%s\n %s INTEGER" % (start,MKKEYFIELDID[field]) 100 sql += "%s\n %s TEXT" % (start,field) 102 sql += "%s\n %s INTEGER" % (start,field) 103 start = "," 105 sql += "%sFOREIGN KEY(typeid) REFERENCES TYPE(typeid)," % start [all …]
|
D | processResult.py | 81 def start(self): member in TextFormatter 129 def start(self): member in HTMLFormatter 210 def start(self): member in CSVFormatter 249 def start(self): member in MathematicaFormatter 368 formatter.start()
|
D | README.md | 129 A test should start (as far as possible) in a clean state. There should not be interferences betwee… 572 To start the tests you need to:
|
/cmsis-dsp-latest/Testing/PatternGeneration/ |
D | Bayes.py | 12 start = False 15 if start: 17 start = True 22 start = False 25 if start: 27 start = True
|
/cmsis-dsp-latest/Documentation/Doxygen/src/ |
D | matrix.md | 68 The second argument `1` is where is the row we start the view : element `1`. 76 VectorView<P,S> row(const index_t i,const index_t start=0,const index_t stop=C) 113 You specify the row start and row end, then column start and column end.
|
D | vector.md | 104 VectorView<P,S> sub(const index_t start=0,const index_t stop=L) 110 * The start of the view (`0` by default)
|
D | mainpage.md | 35 …le with a Python API as close as possible to the C one. It can be used to start developing and tes… 39 This extension is a set of C++ headers. They just need to included to start using the features.
|
D | template.md | 56 A template is just a C++ header. You only need to include this header to start using the template. …
|
/cmsis-dsp-latest/Testing/cmsis_build/RTE/Device/ARMCM33/ |
D | ARMCM33_gcc.ld | 112 * All SG veneers are placed in the special output section .gnu.sgstubs. Its start address 113 * must be set, either with the command line option '--section-start' or in a linker script,
|
/cmsis-dsp-latest/Testing/cmsis_build/RTE/Device/ARMCM0P/ |
D | gcc_arm.ld | 129 * All SG veneers are placed in the special output section .gnu.sgstubs. Its start address 130 * must be set, either with the command line option �--section-start� or in a linker script,
|
/cmsis-dsp-latest/Testing/cmsis_build/RTE/Device/ARMCM3/ |
D | gcc_arm.ld | 129 * All SG veneers are placed in the special output section .gnu.sgstubs. Its start address 130 * must be set, either with the command line option �--section-start� or in a linker script,
|
/cmsis-dsp-latest/Testing/cmsis_build/RTE/Device/ARMCM4_FP/ |
D | gcc_arm.ld | 129 * All SG veneers are placed in the special output section .gnu.sgstubs. Its start address 130 * must be set, either with the command line option �--section-start� or in a linker script,
|
/cmsis-dsp-latest/Testing/cmsis_build/RTE/Device/ARMCM7_DP/ |
D | gcc_arm.ld | 129 * All SG veneers are placed in the special output section .gnu.sgstubs. Its start address 130 * must be set, either with the command line option �--section-start� or in a linker script,
|
/cmsis-dsp-latest/Testing/cmsis_build/RTE/Device/ARMCM23/ |
D | gcc_arm.ld | 136 * All SG veneers are placed in the special output section .gnu.sgstubs. Its start address 137 * must be set, either with the command line option �--section-start� or in a linker script,
|
/cmsis-dsp-latest/Testing/cmsis_build/RTE/Device/ARMCM33_DSP_FP/ |
D | gcc_arm.ld | 136 * All SG veneers are placed in the special output section .gnu.sgstubs. Its start address 137 * must be set, either with the command line option �--section-start� or in a linker script,
|
/cmsis-dsp-latest/Testing/cmsis_build/RTE/Device/ARMCM55/ |
D | gcc_arm.ld | 136 * All SG veneers are placed in the special output section .gnu.sgstubs. Its start address 137 * must be set, either with the command line option �--section-start� or in a linker script,
|
/cmsis-dsp-latest/Testing/FrameworkSource/ |
D | FPGA.cpp | 225 int start = 1; in recomputeTestDir() local 229 if (start) in recomputeTestDir() 232 start =0; in recomputeTestDir()
|
D | Semihosting.cpp | 264 int start = 1; in recomputeTestDir() local 268 if (start) in recomputeTestDir() 271 start =0; in recomputeTestDir()
|
/cmsis-dsp-latest/PythonWrapper/examples/kws_example/kws/ |
D | kws.ino | 64 Serial.println("Failed to start PDM!");
|
/cmsis-dsp-latest/Documentation/Doxygen/style_template/ |
D | extra_stylesheet.css | 532 margin-block-start: 0em; 672 align-items: flex-start; 716 align-items: flex-start; 812 margin-block-start: 1em;
|