Searched refs:malloc (Results 1 – 11 of 11) sorted by relevance
58 static char * malloc(const std::size_t bytes) in malloc() function61 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() function198 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()
72 return(reinterpret_cast<char*>(std::malloc(sz)));96 void *ptr = std::malloc(sz);108 return(reinterpret_cast<char*>(std::malloc(L)));
3 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`.
3 …poraries need to be allocated, they'll generally be allocated through a `malloc` since the size is…
44 …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 …
39 memoryBuf = (char*)malloc(MEMSIZE); in testmain()
585 state=(T*)malloc(sizeof(T)*(TAPS+BLOCK+BLOCK)); in test()586 coefsb=(T*)malloc(sizeof(T)*(TAPS+32)); in test()
151 state=(q15_t*)malloc(stateLength * sizeof(q15_t*)); in FIR()
195 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()
363 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()
310 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()