Searched refs:minimum_free_bytes (Results 1 – 4 of 4) sorted by relevance
79 size_t minimum_free_bytes; member151 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()
573 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()
400 subtract_poison_overhead(&info->minimum_free_bytes); in multi_heap_get_info()
167 …size_t minimum_free_bytes; ///< Lifetime minimum free heap size. Equivalent to multi_minimum_f… member