Searched refs:HEAP_MALLOC (Results 1 – 1 of 1) sorted by relevance
38 static inline void *HEAP_MALLOC(size_t s) { return miniheap_alloc(s, 0); } in HEAP_MALLOC() function65 #define HEAP_MALLOC cmpct_alloc macro85 #define HEAP_MALLOC(s) dlmalloc(s) macro160 void *ptr = HEAP_MALLOC(size); in malloc()249 ptr[0] = HEAP_MALLOC(8); in heap_test()250 ptr[1] = HEAP_MALLOC(32); in heap_test()251 ptr[2] = HEAP_MALLOC(7); in heap_test()252 ptr[3] = HEAP_MALLOC(0); in heap_test()253 ptr[4] = HEAP_MALLOC(98713); in heap_test()254 ptr[5] = HEAP_MALLOC(16); in heap_test()
Completed in 3 milliseconds