• Home
  • Raw
  • Download

Lines Matching refs:total_stats

38 	malloc_thread_stats_t total_stats = {0};  in test_main_thread()  local
50 result &= stats_from_mallinfo(&total_stats, &free_heap_space_after_allocations, use_mallinfo2); in test_main_thread()
51 result &= validate_total_allocated(&total_stats); in test_main_thread()
56 result &= stats_from_mallinfo(&total_stats, &free_heap_space_after_free, use_mallinfo2); in test_main_thread()
57 total_stats.mmapped_regions -= total_stats_before_test.mmapped_regions; in test_main_thread()
58 total_stats.total_allocated_memory -= total_stats_before_test.total_allocated_memory; in test_main_thread()
59 total_stats.total_mmapped_memory -= total_stats_before_test.total_mmapped_memory; in test_main_thread()
60 result &= validate_all_freed(&total_stats); in test_main_thread()
71 malloc_thread_stats_t total_stats = {0}; in test_different_threads() local
95 result &= stats_from_mallinfo(&total_stats, &free_heap_space_after_allocations, use_mallinfo2); in test_different_threads()
96 result &= validate_total_allocated(&total_stats); in test_different_threads()
103 result &= stats_from_mallinfo(&total_stats, &free_heap_space_after_free, use_mallinfo2); in test_different_threads()
104 total_stats.mmapped_regions -= total_stats_before_test.mmapped_regions; in test_different_threads()
105 total_stats.total_allocated_memory -= total_stats_before_test.total_allocated_memory; in test_different_threads()
106 total_stats.total_mmapped_memory -= total_stats_before_test.total_mmapped_memory; in test_different_threads()
107 result &= validate_all_freed(&total_stats); in test_different_threads()