Lines Matching refs:info
554 multi_heap_info_t info; in heap_caps_get_largest_free_block() local
555 heap_caps_get_info(&info, caps); in heap_caps_get_largest_free_block()
556 return info.largest_free_block; in heap_caps_get_largest_free_block()
559 void heap_caps_get_info( multi_heap_info_t *info, uint32_t caps ) in heap_caps_get_info() argument
561 memset(info, 0, sizeof(multi_heap_info_t)); in heap_caps_get_info()
569 info->total_free_bytes += hinfo.total_free_bytes; in heap_caps_get_info()
570 info->total_allocated_bytes += hinfo.total_allocated_bytes; in heap_caps_get_info()
571 info->largest_free_block = MAX(info->largest_free_block, in heap_caps_get_info()
573 info->minimum_free_bytes += hinfo.minimum_free_bytes; in heap_caps_get_info()
574 info->allocated_blocks += hinfo.allocated_blocks; in heap_caps_get_info()
575 info->free_blocks += hinfo.free_blocks; in heap_caps_get_info()
576 info->total_blocks += hinfo.total_blocks; in heap_caps_get_info()
583 multi_heap_info_t info; in heap_caps_print_heap_info() local
588 multi_heap_get_info(heap->heap, &info); in heap_caps_print_heap_info()
591 …heap->start, heap->end - heap->start, info.total_free_bytes, info.total_allocated_bytes, info.mini… in heap_caps_print_heap_info()
593 info.largest_free_block, info.allocated_blocks, in heap_caps_print_heap_info()
594 info.free_blocks, info.total_blocks); in heap_caps_print_heap_info()
598 heap_caps_get_info(&info, caps); in heap_caps_print_heap_info()
600 …n_free %d largest_free_block %d\n", info.total_free_bytes, info.total_allocated_bytes, info.minimu… in heap_caps_print_heap_info()