Home
last modified time | relevance | path

Searched refs:heap_caps_realloc_base (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-latest/zephyr/port/heap/
Dheap_caps_zephyr.c86 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/
Dheap_caps_linux.c81 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()
Dheap_caps.c30 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()