OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nr_syms
(Results
1 - 4
of
4
) sorted by null
/external/oprofile/libutil++/
bfd_support.cpp
529
if (image_bfd_info && image_bfd_info->
nr_syms
== 0) {
548
nr_syms
= nr_mini_syms + nr_synth_syms;
549
syms.reset(new asymbol *[
nr_syms
+ 1]);
562
syms[
nr_syms
] = NULL;
586
nr_syms
= bfd_get_symtab_upper_bound(abfd);
589
<<
nr_syms
<< hex << endl;
591
nr_syms
/= sizeof(asymbol *);
593
if (
nr_syms
< 1)
596
syms.reset(new asymbol *[
nr_syms
]);
598
nr_syms
= bfd_canonicalize_symtab(abfd, syms.get())
[
all
...]
bfd_support.h
27
bfd_info() : abfd(0),
nr_syms
(0), synth_syms(0), image_bfd_info(0) {}
48
size_t
nr_syms
;
member in struct:bfd_info
op_bfd.cpp
222
for (i = 0; i < ibfd.
nr_syms
; ++i) {
231
for (i = 0; i < dbfd.
nr_syms
; ++i) {
/external/linux-tools-perf/util/
symbol.c
726
int
nr_syms
= 0;
local
767
nr_syms
++;
774
return
nr_syms
;
789
#define elf_symtab__for_each_symbol(syms,
nr_syms
, idx, sym) \
791
idx <
nr_syms
; \
1074
uint32_t
nr_syms
;
local
1145
nr_syms
= shdr.sh_size / shdr.sh_entsize;
1156
elf_symtab__for_each_symbol(syms,
nr_syms
, idx, sym) {
[
all
...]
Completed in 80 milliseconds