Home
last modified time | relevance | path

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

/hal_espressif-latest/components/heap/
Dmulti_heap.c400 if(size > info->largest_free_block ) { in multi_heap_get_info_tlsf()
401 info->largest_free_block = size; in multi_heap_get_info_tlsf()
426 info->largest_free_block = tlsf_fit_size(heap->heap_data, info->largest_free_block); in multi_heap_get_info_impl()
Dheap_caps.c556 return info.largest_free_block; in heap_caps_get_largest_free_block()
571 info->largest_free_block = MAX(info->largest_free_block, in heap_caps_get_info()
572 hinfo.largest_free_block); in heap_caps_get_info()
593 info.largest_free_block, info.allocated_blocks, in heap_caps_print_heap_info()
600 …fo.total_free_bytes, info.total_allocated_bytes, info.minimum_free_bytes, info.largest_free_block); in heap_caps_print_heap_info()
Dmulti_heap_poisoning.c396 subtract_poison_overhead(&info->largest_free_block); in multi_heap_get_info()
/hal_espressif-latest/components/heap/include/
Dmulti_heap.h166 …size_t largest_free_block; ///< Size of the largest free block in the heap. This is the larges… member