OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:elf_march
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
elf.c
70
static elf_machine_handler const *
elf_march
= &elf_null_machine;
variable
79
for (i=0,
elf_march
= elf_machine_handlers[0];
80
elf_march
!= NULL;
81
elf_march
= elf_machine_handlers[++i])
83
if (yasm__strcasecmp(yasm_arch_keyword(arch),
elf_march
->arch)==0)
84
if (yasm__strcasecmp(machine,
elf_march
->machine)==0)
85
if (bits_pref == 0 || bits_pref ==
elf_march
->bits)
89
if (
elf_march
&&
elf_march
->num_ssyms > 0)
93
yasm_xmalloc(
elf_march
->num_ssyms * sizeof(yasm_symrec *))
[
all
...]
elf-objfmt.c
355
const elf_machine_handler *
elf_march
;
local
358
elf_march
= elf_set_arch(object->arch, object->symtab, bits_pref);
359
if (!
elf_march
) {
364
*elf_march_out =
elf_march
;
391
const elf_machine_handler *
elf_march
;
local
396
&
elf_march
);
400
if (
elf_march
->bits == 32)
402
else if (
elf_march
->bits == 64)
[
all
...]
Completed in 116 milliseconds