Searched refs:time_sorted_syms (Results 1 – 2 of 2) sorted by relevance
/toolchain/binutils/binutils-2.25/gprof/ |
D | hist.c | 567 Sym **time_sorted_syms, *top_dog, *sym; in hist_print() local 595 time_sorted_syms = (Sym **) xmalloc (symtab.len * sizeof (Sym *)); in hist_print() 598 time_sorted_syms[sym_index] = &symtab.base[sym_index]; in hist_print() 600 qsort (time_sorted_syms, symtab.len, sizeof (Sym *), cmp_time); in hist_print() 616 sym = time_sorted_syms[sym_index]; in hist_print() 653 addr = time_sorted_syms[sym_index]->addr; in hist_print() 660 print_line (time_sorted_syms[sym_index], SItab[log_scale].scale); in hist_print() 663 free (time_sorted_syms); in hist_print()
|
D | cg_arcs.c | 596 Sym *parent, **time_sorted_syms, **top_sorted_syms; in cg_assemble() local 673 time_sorted_syms = (Sym **) xmalloc ((symtab.len + num_cycles) * sizeof (Sym *)); in cg_assemble() 675 time_sorted_syms[sym_index] = &symtab.base[sym_index]; in cg_assemble() 678 time_sorted_syms[symtab.len + sym_index - 1] = &cycle_header[sym_index]; in cg_assemble() 680 qsort (time_sorted_syms, symtab.len + num_cycles, sizeof (Sym *), in cg_assemble() 684 time_sorted_syms[sym_index]->cg.index = sym_index + 1; in cg_assemble() 686 return time_sorted_syms; in cg_assemble()
|