Searched refs:RT_HEAP_SIZE (Results 1 – 8 of 8) sorted by relevance
25 #define RT_HEAP_SIZE (64*1024) macro26 static rt_uint8_t rt_heap[RT_HEAP_SIZE];33 return rt_heap + RT_HEAP_SIZE; in rt_heap_end_get()
16 #define RT_HEAP_SIZE 1024 macro17 static uint32_t user_heap[RT_HEAP_SIZE]; // heap default size: 4K(1024 * 4)34 rt_system_heap_init((void *)user_heap, (void *)user_heap + RT_HEAP_SIZE); in rt_hw_board_init()
41 #define RT_HEAP_SIZE 1024 macro42 static uint32_t rt_heap[RT_HEAP_SIZE]; // heap default size: 4K(1024 * 4)50 return rt_heap + RT_HEAP_SIZE; in rt_heap_end_get()
35 #define RT_HEAP_SIZE (1024*10) macro36 static uint32_t rt_heap[RT_HEAP_SIZE];44 return rt_heap + RT_HEAP_SIZE; in rt_heap_end_get()
54 #define RT_HEAP_SIZE (1024) macro56 static uint32_t rt_heap[RT_HEAP_SIZE];64 return rt_heap + RT_HEAP_SIZE; in rt_heap_end_get()
35 #define RT_HEAP_SIZE 2048 macro36 static uint32_t rt_heap[RT_HEAP_SIZE];/* heap default size: 4K(1024 * 4)*/44 return rt_heap + RT_HEAP_SIZE; in rt_heap_end_get()
26 heap = (rt_uint8_t *)malloc(RT_HEAP_SIZE); in rt_hw_sram_init()38 rt_system_heap_init((void*)heap, (void*)&heap[RT_HEAP_SIZE - 1]); in rt_hw_sram_init()
13 #define RT_HEAP_SIZE (1024*1024*8) macro
Completed in 16 milliseconds