Searched refs:heap_caps_malloc_base (Results 1 – 3 of 3) sorted by relevance
/hal_espressif-latest/components/heap/ |
D | heap_caps.c | 32 static void *heap_caps_malloc_base( size_t size, uint32_t caps ); 121 HEAP_IRAM_ATTR static void *heap_caps_malloc_base( size_t size, uint32_t caps) in heap_caps_malloc_base() function 197 void* ptr = heap_caps_malloc_base(size, caps); in heap_caps_malloc() 231 r=heap_caps_malloc_base( size, MALLOC_CAP_DEFAULT | MALLOC_CAP_INTERNAL ); in heap_caps_malloc_default() 233 r=heap_caps_malloc_base( size, MALLOC_CAP_DEFAULT | MALLOC_CAP_SPIRAM ); in heap_caps_malloc_default() 237 r=heap_caps_malloc_base( size, MALLOC_CAP_DEFAULT ); in heap_caps_malloc_default() 293 r = heap_caps_malloc_base( size, caps ); in heap_caps_malloc_prefer() 404 return heap_caps_malloc_base(size, caps); in heap_caps_realloc_base() 451 void *new_p = heap_caps_malloc_base(size, caps); in heap_caps_realloc_base() 497 result = heap_caps_malloc_base(size_bytes, caps); in heap_caps_calloc_base()
|
D | heap_caps_linux.c | 45 static void *heap_caps_malloc_base( size_t size, uint32_t caps) in heap_caps_malloc_base() function 59 return heap_caps_malloc_base(size, caps); in heap_caps_malloc() 72 return heap_caps_malloc_base(size, MALLOC_CAP_DEFAULT); in heap_caps_malloc_default()
|
/hal_espressif-latest/zephyr/port/heap/ |
D | heap_caps_zephyr.c | 52 static void *heap_caps_malloc_base( size_t size, uint32_t caps) in heap_caps_malloc_base() function 66 return heap_caps_malloc_base(size, caps); in heap_caps_malloc() 77 return heap_caps_malloc_base(size, MALLOC_CAP_DEFAULT); in heap_caps_malloc_default()
|