Searched refs:heap_caps_realloc_base (Results 1 – 3 of 3) sorted by relevance
/hal_espressif-latest/zephyr/port/heap/ |
D | heap_caps_zephyr.c | 86 static void *heap_caps_realloc_base( void *ptr, size_t size, uint32_t caps) in heap_caps_realloc_base() function 99 return heap_caps_realloc_base(ptr, size, caps); in heap_caps_realloc() 104 return heap_caps_realloc_base(ptr, size, MALLOC_CAP_DEFAULT); in heap_caps_realloc_default() 109 return heap_caps_realloc_base(ptr, size, MALLOC_CAP_DEFAULT); in heap_caps_realloc_prefer()
|
/hal_espressif-latest/components/heap/ |
D | heap_caps_linux.c | 81 static void *heap_caps_realloc_base( void *ptr, size_t size, uint32_t caps) in heap_caps_realloc_base() function 94 return heap_caps_realloc_base(ptr, size, caps); in heap_caps_realloc() 99 return heap_caps_realloc_base(ptr, size, MALLOC_CAP_DEFAULT); in heap_caps_realloc_default() 104 return heap_caps_realloc_base(ptr, size, MALLOC_CAP_DEFAULT); in heap_caps_realloc_prefer()
|
D | heap_caps.c | 30 static void *heap_caps_realloc_base( void *ptr, size_t size, uint32_t caps ); 264 r=heap_caps_realloc_base( ptr, size, MALLOC_CAP_DEFAULT | MALLOC_CAP_INTERNAL); in heap_caps_realloc_default() 266 r=heap_caps_realloc_base( ptr, size, MALLOC_CAP_DEFAULT | MALLOC_CAP_SPIRAM); in heap_caps_realloc_default() 271 r=heap_caps_realloc_base( ptr, size, MALLOC_CAP_DEFAULT); in heap_caps_realloc_default() 317 r = heap_caps_realloc_base( ptr, size, caps ); in heap_caps_realloc_prefer() 397 HEAP_IRAM_ATTR static void *heap_caps_realloc_base( void *ptr, size_t size, uint32_t caps) in heap_caps_realloc_base() function 474 ptr = heap_caps_realloc_base(ptr, size, caps); in heap_caps_realloc()
|