OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:time_sorted_syms
(Results
1 - 2
of
2
) sorted by null
/toolchain/binutils/binutils-2.25/gprof/
hist.c
568
Sym **
time_sorted_syms
, *top_dog, *sym;
596
time_sorted_syms
= (Sym **) xmalloc (symtab.len * sizeof (Sym *));
599
time_sorted_syms
[sym_index] = &symtab.base[sym_index];
601
qsort (
time_sorted_syms
, symtab.len, sizeof (Sym *), cmp_time);
617
sym =
time_sorted_syms
[sym_index];
654
addr =
time_sorted_syms
[sym_index]->addr;
661
print_line (
time_sorted_syms
[sym_index], SItab[log_scale].scale);
664
free (
time_sorted_syms
);
567
Sym **
time_sorted_syms
, *top_dog, *sym;
local
cg_arcs.c
596
Sym *parent, **
time_sorted_syms
, **top_sorted_syms;
local
673
time_sorted_syms
= (Sym **) xmalloc ((symtab.len + num_cycles) * sizeof (Sym *));
675
time_sorted_syms
[sym_index] = &symtab.base[sym_index];
678
time_sorted_syms
[symtab.len + sym_index - 1] = &cycle_header[sym_index];
680
qsort (
time_sorted_syms
, symtab.len + num_cycles, sizeof (Sym *),
684
time_sorted_syms
[sym_index]->cg.index = sym_index + 1;
686
return
time_sorted_syms
;
Completed in 167 milliseconds