Searched refs:tlsf_t (Results 1 – 1 of 1) sorted by relevance
/hal_espressif-latest/components/esp_rom/patches/ |
D | esp_rom_tlsf.c | 25 typedef void* tlsf_t; typedef 150 tlsf_t (*tlsf_create)(void* mem); 151 tlsf_t (*tlsf_create_with_pool)(void* mem, size_t bytes); 152 pool_t (*tlsf_get_pool)(tlsf_t tlsf); 153 pool_t (*tlsf_add_pool)(tlsf_t tlsf, void* mem, size_t bytes); 154 void (*tlsf_remove_pool)(tlsf_t tlsf, pool_t pool); 156 void* (*tlsf_malloc)(tlsf_t tlsf, size_t size); 157 void* (*tlsf_memalign)(tlsf_t tlsf, size_t align, size_t size); 158 void* (*tlsf_memalign_offs)(tlsf_t tlsf, size_t align, size_t size, size_t offset); 159 void* (*tlsf_realloc)(tlsf_t tlsf, void* ptr, size_t size); [all …]
|