/cmsis-dsp-latest/PythonWrapper/examples/kws_example/kws/ |
D | GenericNodes.h | 225 memory.resize(overlap); 231 memcpy((void*)b,(void*)memory.data(),overlap*sizeof(IN)); 233 memcpy((void*)memory.data(),(void*)(b+windowSize-overlap),overlap*sizeof(IN)) ; 237 std::vector<IN> memory; 248 memory.resize(overlap); 258 memory[i] = a[i] + memory[i]; 264 memcpy((void*)b,(void*)memory.data(),(windowSize-overlap)*sizeof(IN)); 266 … memmove(memory.data(),memory.data()+windowSize-overlap,(2*overlap - windowSize)*sizeof(IN)); 267 memcpy(memory.data()+2*overlap - windowSize,a+overlap,(windowSize-overlap)*sizeof(IN)); 271 memcpy((void*)b,(void*)memory.data(),overlap*sizeof(IN)); [all …]
|
/cmsis-dsp-latest/Documentation/Doxygen/src/ |
D | memory_allocator.md | 20 It means that by default the memory allocator is `TMP_ALLOC`. 40 … that compilers were generating more efficient code without state in the memory allocator template. 42 If you don't want to use a `malloc` based memory allocator, you can replace it with your own memory… 45 In that case, you could replace the memory allocator by one using memory pools. 47 With memory pools, allocation is nearly cost free and there is no fragmentation. 51 There are two memory allocators: 53 1. `stat_allocator` is a `malloc` based allocator that is making statistics on the memory allocatio… 55 …ted by `stat_allocator`to pre-allocate memory pools that will be then used for the memory allocati… 78 … to make an identity matrix, you can use ` mk_identity` that will make a memory allocation using `… 86 then the dimension `NB` is a runtime parameter. The memory pool allocator given as example in this …
|
D | fusion.md | 17 …mples with a stride. Or write some samples with a stride. A virtual vector does not own its memory. 34 Note that this problem occurs only for virtual vectors who do not own their memory.
|
D | memory_static_dynamic.md | 20 With static objects it is also possible to use different memory allocator with better performances … 34 Finally, with dynamic object, memory allocation can be an issue. You can mitigate the problem by re…
|
D | guidelines.md | 5 * Cost of the memory allocation
|
D | vector.md | 16 * `Allocator` is the memory allocator. By default it is `TMP_ALLOC` that you can redefine since it … 74 `VectorView` do not own their memory. It is owned by the original vector.
|
D | vectorop.md | 44 …at build time) and datatype `float32_t`. This creation is requiring some memory allocation and by … 46 It is possible to change the memory allocator for the vectors (and it is advised) to avoid using `m…
|
/cmsis-dsp-latest/Testing/ |
D | testmain.cpp | 46 Client::ArrayMemory memory(memoryBuf,MEMSIZE); in testmain() local 57 Client::PatternMgr mgr(&io,&memory); in testmain()
|
/cmsis-dsp-latest/dsppp/RTE/Device/SSE-300-MPS3/ |
D | linker_SSE300MPS3_secure.ld | 17 /* Linker script to configure memory regions. */ 35 * with other linker script that defines memory regions FLASH and RAM. 121 /* Make sure veneers fit into code memory */ 122 …+ S_CODE_SIZE) > Image$$ER_CODE_CMSE_VENEER$$Limit), "Veneer region does not fit into code memory")
|
D | linker_SSE300MPS3_secure.ld.base@1.0.0 | 17 /* Linker script to configure memory regions. */ 35 * with other linker script that defines memory regions FLASH and RAM. 121 /* Make sure veneers fit into code memory */ 122 …+ S_CODE_SIZE) > Image$$ER_CODE_CMSE_VENEER$$Limit), "Veneer region does not fit into code memory")
|
/cmsis-dsp-latest/Testing/cmsis_build/RTE/Device/SSE-300-MPS3/ |
D | linker_SSE300MPS3_secure.ld | 17 /* Linker script to configure memory regions. */ 35 * with other linker script that defines memory regions FLASH and RAM. 121 /* Make sure veneers fit into code memory */ 122 …+ S_CODE_SIZE) > Image$$ER_CODE_CMSE_VENEER$$Limit), "Veneer region does not fit into code memory")
|
/cmsis-dsp-latest/Examples/ARM/arm_signal_converge_example/ |
D | arm_signal_converge_example.ini | 2 /* This file demonstrates how to Map memory ranges, specify read, write, and execute permissions
|
/cmsis-dsp-latest/Examples/ARM/arm_bayes_example/ |
D | arm_bayes_example.ini | 2 /* This file demonstrates how to Map memory ranges, specify read, write, and execute permissions
|
/cmsis-dsp-latest/Examples/ARM/arm_dotproduct_example/ |
D | arm_dotproduct_example.ini | 2 /* This file demonstrates how to Map memory ranges, specify read, write, and execute permissions
|
/cmsis-dsp-latest/Examples/ARM/arm_svm_example/ |
D | arm_svm_example.ini | 2 /* This file demonstrates how to Map memory ranges, specify read, write, and execute permissions
|
/cmsis-dsp-latest/Examples/ARM/arm_fft_bin_example/ |
D | arm_fft_bin_example.ini | 2 /* This file demonstrates how to Map memory ranges, specify read, write, and execute permissions
|
/cmsis-dsp-latest/Examples/ARM/arm_variance_example/ |
D | arm_variance_example.ini | 2 /* This file demonstrates how to Map memory ranges, specify read, write, and execute permissions
|
/cmsis-dsp-latest/Examples/ARM/arm_class_marks_example/ |
D | arm_class_marks_example.ini | 2 /* This file demonstrates how to Map memory ranges, specify read, write, and execute permissions
|
/cmsis-dsp-latest/Examples/ARM/arm_convolution_example/ |
D | arm_convolution_example.ini | 2 /* This file demonstrates how to Map memory ranges, specify read, write, and execute permissions
|
/cmsis-dsp-latest/Examples/ARM/arm_sin_cos_example/ |
D | arm_sin_cos_example.ini | 2 /* This file demonstrates how to Map memory ranges, specify read, write, and execute permissions
|
/cmsis-dsp-latest/Examples/ARM/arm_fir_example/ |
D | arm_fir_example.ini | 2 /* This file demonstrates how to Map memory ranges, specify read, write, and execute permissions
|
/cmsis-dsp-latest/Examples/ARM/arm_graphic_equalizer_example/ |
D | arm_graphic_equalizer_example.ini | 2 /* This file demonstrates how to Map memory ranges, specify read, write, and execute permissions
|
/cmsis-dsp-latest/Examples/ARM/arm_linear_interp_example/ |
D | arm_linear_interp_example.ini | 2 /* This file demonstrates how to Map memory ranges, specify read, write, and execute permissions
|
/cmsis-dsp-latest/Examples/ARM/arm_matrix_example/ |
D | arm_matrix_example.ini | 2 /* This file demonstrates how to Map memory ranges, specify read, write, and execute permissions
|
/cmsis-dsp-latest/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM55/ |
D | ARMCM55_ac6.sct | 8 /* memory regions are:
|