• Home
  • Raw
  • Download

Lines Matching refs:tot

11 static void show_stats(get_t get, struct allocator_stats * tot)  in show_stats()  argument
18 x = *tot; in show_stats()
24 tot->allocations += x.allocations; in show_stats()
25 tot->useful_bytes += x.useful_bytes; in show_stats()
26 tot->total_bytes += x.total_bytes; in show_stats()
31 struct allocator_stats tot = { .name = "total", }; in show_allocation_stats() local
35 show_stats(get_token_stats, &tot); in show_allocation_stats()
36 show_stats(get_ident_stats, &tot); in show_allocation_stats()
37 show_stats(get_symbol_stats, &tot); in show_allocation_stats()
38 show_stats(get_expression_stats, &tot); in show_allocation_stats()
39 show_stats(get_statement_stats, &tot); in show_allocation_stats()
40 show_stats(get_scope_stats, &tot); in show_allocation_stats()
41 show_stats(get_basic_block_stats, &tot); in show_allocation_stats()
42 show_stats(get_instruction_stats, &tot); in show_allocation_stats()
43 show_stats(get_pseudo_stats, &tot); in show_allocation_stats()
44 show_stats(get_pseudo_user_stats, &tot); in show_allocation_stats()
45 show_stats(get_ptrlist_stats, &tot); in show_allocation_stats()
46 show_stats(get_multijmp_stats, &tot); in show_allocation_stats()
47 show_stats(get_asm_rules_stats, &tot); in show_allocation_stats()
48 show_stats(get_asm_constraint_stats, &tot); in show_allocation_stats()
49 show_stats(get_context_stats, &tot); in show_allocation_stats()
50 show_stats(get_string_stats, &tot); in show_allocation_stats()
51 show_stats(get_bytes_stats, &tot); in show_allocation_stats()
55 show_stats(NULL, &tot); in show_allocation_stats()