Home
last modified time | relevance | path

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

/cmsis-dsp-latest/dsppp/Include/dsppp/
Dmemory_pool.hpp58 static char * malloc(const std::size_t bytes) in malloc() function
61 return reinterpret_cast<char *>(std::malloc(bytes)); in malloc()
63 char *ret=reinterpret_cast<char *>(std::malloc(bytes)); in malloc()
100 void *ptr=std::malloc(size+alignment+sizeof(void*)); in aligned_malloc()
141 static char * malloc(const size_type bytes) in malloc() function
198 res=reinterpret_cast<char*>(std::malloc(sz)); in allocate()
215 res=reinterpret_cast<char*>(std::malloc(L)); in allocate()
289 … *p = UserAllocator::malloc(BUF_SIZE < sizeof(ListElem) ? sizeof(ListElem) : BUF_SIZE); in MemoryPool()
/cmsis-dsp-latest/dsppp/
Dallocator.h72 return(reinterpret_cast<char*>(std::malloc(sz)));
96 void *ptr = std::malloc(sz);
108 return(reinterpret_cast<char*>(std::malloc(L)));
/cmsis-dsp-latest/Documentation/Doxygen/src/
Dmemory_allocator.md3 By default, `malloc` is used.
42 If you don't want to use a `malloc` based memory allocator, you can replace it with your own memory…
53 1. `stat_allocator` is a `malloc` based allocator that is making statistics on the memory allocatio…
86 … working with dimensions known at build time. For runtime dimensions, it is still using a `malloc`.
Dguidelines.md3 …poraries need to be allocated, they'll generally be allocated through a `malloc` since the size is…
Dvectorop.md44 …2_t`. This creation is requiring some memory allocation and by default it is done with a `malloc`.
46 …the memory allocator for the vectors (and it is advised) to avoid using `malloc` and instead have …
/cmsis-dsp-latest/Testing/
Dtestmain.cpp39 memoryBuf = (char*)malloc(MEMSIZE); in testmain()
/cmsis-dsp-latest/dsppp/tests/
Dfilter_test.cpp585 state=(T*)malloc(sizeof(T)*(TAPS+BLOCK+BLOCK)); in test()
586 coefsb=(T*)malloc(sizeof(T)*(TAPS+32)); in test()
/cmsis-dsp-latest/PythonWrapper/examples/kws_example/kws/
DAppNodes.h151 state=(q15_t*)malloc(stateLength * sizeof(q15_t*)); in FIR()
/cmsis-dsp-latest/Testing/FrameworkSource/
DSemihosting.cpp195 p=(Testing::param_t*)malloc(sizeof(Testing::param_t)*(nbInputSamples)); in ReadParameterList()
534 result=(char*)malloc(len*sizeof(Testing::param_t)); in ImportParams()
556 result=(Testing::param_t*)malloc(len*sizeof(Testing::param_t)); in ImportParams()
DFPGA.cpp363 p=(Testing::param_t*)malloc(sizeof(Testing::param_t)*(nbInputSamples)); in ReadParameterList()
468 result=(Testing::param_t*)malloc(len*sizeof(Testing::param_t)); in ImportParams()
/cmsis-dsp-latest/Testing/Source/Tests/
DSupportTestsF32.cpp310 buf = (float32_t *)malloc((this->nbSamples)*sizeof(float32_t) ); in test_merge_sort_out_f32()
327 buf = (float32_t *)malloc((this->nbSamples)*sizeof(float32_t) ); in test_merge_sort_const_f32()