Home
last modified time | relevance | path

Searched refs:minimum_free_bytes (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-latest/components/heap/
Dmulti_heap.c79 size_t minimum_free_bytes; member
151 result->minimum_free_bytes = result->free_bytes; in multi_heap_register_impl()
211 if (heap->free_bytes < heap->minimum_free_bytes) { in multi_heap_malloc_impl()
212 heap->minimum_free_bytes = heap->free_bytes; in multi_heap_malloc_impl()
257 if (heap->free_bytes < heap->minimum_free_bytes) { in multi_heap_realloc_impl()
258 heap->minimum_free_bytes = heap->free_bytes; in multi_heap_realloc_impl()
287 if(heap->free_bytes < heap->minimum_free_bytes) { in multi_heap_aligned_alloc_impl_offs()
288 heap->minimum_free_bytes = heap->free_bytes; in multi_heap_aligned_alloc_impl_offs()
388 return heap->minimum_free_bytes; in multi_heap_minimum_free_size_impl()
424 info->minimum_free_bytes = heap->minimum_free_bytes; in multi_heap_get_info_impl()
Dheap_caps.c573 info->minimum_free_bytes += hinfo.minimum_free_bytes; in heap_caps_get_info()
591 …ap->end - heap->start, info.total_free_bytes, info.total_allocated_bytes, info.minimum_free_bytes); in heap_caps_print_heap_info()
600 …ock %d\n", info.total_free_bytes, info.total_allocated_bytes, info.minimum_free_bytes, info.larges… in heap_caps_print_heap_info()
Dmulti_heap_poisoning.c400 subtract_poison_overhead(&info->minimum_free_bytes); in multi_heap_get_info()
/hal_espressif-latest/components/heap/include/
Dmulti_heap.h167 …size_t minimum_free_bytes; ///< Lifetime minimum free heap size. Equivalent to multi_minimum_f… member