Searched refs:esp_heap_runtime (Results 1 – 2 of 2) sorted by relevance
/Zephyr-latest/soc/espressif/common/ |
D | esp_heap_runtime.c | 26 static struct k_heap esp_heap_runtime; variable 33 k_heap_init(&esp_heap_runtime, esp_heap_runtime_init_mem, ESP_HEAP_RUNTIME_MAX_SIZE); in esp_heap_runtime_init() 48 return k_heap_alloc(&esp_heap_runtime, size, K_NO_WAIT); in esp_heap_runtime_malloc() 58 void *ptr = k_heap_alloc(&esp_heap_runtime, sz, K_NO_WAIT); in esp_heap_runtime_calloc() 69 return k_heap_realloc(&esp_heap_runtime, ptr, bytes, K_NO_WAIT); in esp_heap_runtime_realloc() 74 k_heap_free(&esp_heap_runtime, mem); in esp_heap_runtime_free()
|
D | CMakeLists.txt | 7 zephyr_sources_ifdef(CONFIG_ESP_HEAP_RUNTIME esp_heap_runtime.c)
|