/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
D | section.h | 49 struct yasm_object { struct 89 /*@null@*/ /*@only@*/ yasm_object *yasm_object_create argument 111 (yasm_object *object, const char *name, unsigned long align, int code, 125 int yasm_object_directive(yasm_object *object, const char *name, 135 void yasm_object_destroy(/*@only@*/ yasm_object *object); 143 void yasm_object_print(const yasm_object *object, FILE *f, int indent_level); 151 void yasm_object_finalize(yasm_object *object, yasm_errwarns *errwarns); 162 (yasm_object *object, /*@null@*/ void *d, 172 (yasm_object *object, const char *name); 179 void yasm_object_set_source_fn(yasm_object *object, const char *src_filename); [all …]
|
D | objfmt.h | 89 /*@null@*/ /*@only@*/ yasm_objfmt * (*create) (yasm_object *object); 94 void (*output) (yasm_object *o, FILE *f, int all_syms, 105 yasm_section * (*add_default_section) (yasm_object *object); 116 (*section_switch)(yasm_object *object, yasm_valparamhead *valparams, 124 (*get_special_sym)(yasm_object *object, const char *name, 134 (const yasm_objfmt_module *module, yasm_object *object); 146 void yasm_objfmt_output(yasm_object *object, FILE *f, int all_syms, 158 yasm_section *yasm_objfmt_add_default_section(yasm_object *object); 165 void yasm_objfmt_init_new_section(yasm_object *object, unsigned long line); 177 (yasm_object *object, yasm_valparamhead *valparams, [all …]
|
D | dbgfmt.h | 60 /*@null@*/ /*@only@*/ yasm_dbgfmt * (*create) (yasm_object *object); 70 void (*generate) (yasm_object *object, yasm_linemap *linemap, 88 (const yasm_dbgfmt_module *module, yasm_object *object); 101 void yasm_dbgfmt_generate(yasm_object *object, yasm_linemap *linemap,
|
D | section.c | 57 /*@dependent@*/ yasm_object *object; /* Pointer to parent object */ 94 dir_extern(yasm_object *object, yasm_valparamhead *valparams, in dir_extern() 110 dir_global(yasm_object *object, yasm_valparamhead *valparams, in dir_global() 126 dir_common(yasm_object *object, yasm_valparamhead *valparams, in dir_common() 151 dir_section(yasm_object *object, yasm_valparamhead *valparams, in dir_section() 188 directives_add(yasm_object *object, /*@null@*/ const yasm_directive *dir) in directives_add() 213 yasm_object * 219 yasm_object *object = yasm_xmalloc(sizeof(yasm_object)); in yasm_object_create() 303 yasm_object_get_general(yasm_object *object, const char *name, in yasm_object_get_general() 357 yasm_object_directive(yasm_object *object, const char *name, in yasm_object_directive() [all …]
|
D | valparam.c | 41 yasm_call_directive(const yasm_directive *directive, yasm_object *object, in yasm_call_directive() 308 yasm_object *object = (yasm_object *)obj; in yasm_dir_helper_expr() 325 yasm_object *object = (yasm_object *)obj; in yasm_dir_helper_intn()
|
D | coretype.h | 96 typedef struct yasm_object yasm_object; typedef
|
D | valparam.h | 84 void (*handler) (yasm_object *object, yasm_valparamhead *valparams, 105 void yasm_call_directive(const yasm_directive *directive, yasm_object *object,
|
D | parser.h | 63 (yasm_object *object, yasm_preproc *pp, int save_input,
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/ |
D | dwarf2-dbgfmt.h | 108 (yasm_object *object, yasm_linemap *linemap, yasm_errwarns *errwarns, 111 void yasm_dwarf2__dir_loc(yasm_object *object, yasm_valparamhead *valparams, 114 void yasm_dwarf2__dir_file(yasm_object *object, yasm_valparamhead *valparams, 119 yasm_section *yasm_dwarf2__generate_aranges(yasm_object *object, 123 yasm_section *yasm_dwarf2__generate_pubnames(yasm_object *object, 128 (yasm_object *object, yasm_section *debug_line,
|
D | dwarf2-aranges.c | 51 yasm_object *object; 81 yasm_dwarf2__generate_aranges(yasm_object *object, yasm_section *debug_info) in yasm_dwarf2__generate_aranges()
|
D | dwarf2-dbgfmt.c | 78 dwarf2_dbgfmt_create(yasm_object *object) in dwarf2_dbgfmt_create() 149 dwarf2_dbgfmt_generate(yasm_object *object, yasm_linemap *linemap, in dwarf2_dbgfmt_generate() 255 yasm_object *object = yasm_section_get_object(bc->section); in dwarf2_head_bc_tobytes()
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/dbg/ |
D | dbg-objfmt.c | 42 dbg_objfmt_create(yasm_object *object) in dbg_objfmt_create() 58 dbg_objfmt_output(yasm_object *object, FILE *f, int all_syms, in dbg_objfmt_output() 94 yasm_object *object = yasm_section_get_object(sect); in dbg_objfmt_init_new_section() 103 dbg_objfmt_add_default_section(yasm_object *object) in dbg_objfmt_add_default_section() 118 dbg_objfmt_section_switch(yasm_object *object, yasm_valparamhead *valparams, in dbg_objfmt_section_switch() 150 dbg_objfmt_get_special_sym(yasm_object *object, const char *name, in dbg_objfmt_get_special_sym()
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/ |
D | nasm-parser.c | 35 nasm_do_parse(yasm_object *object, yasm_preproc *pp, int save_input, in nasm_do_parse() 79 nasm_parser_do_parse(yasm_object *object, yasm_preproc *pp, in nasm_parser_do_parse() 111 tasm_parser_do_parse(yasm_object *object, yasm_preproc *pp, in tasm_parser_do_parse()
|
D | nasm-parser-struct.h | 47 /*@only@*/ yasm_object *object;
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/ |
D | cv-dbgfmt.c | 37 cv_dbgfmt_create(yasm_object *object, yasm_dbgfmt_module *module, int version) in cv_dbgfmt_create() 61 cv8_dbgfmt_create(yasm_object *object) in cv8_dbgfmt_create() 92 cv_dbgfmt_generate(yasm_object *object, yasm_linemap *linemap, in cv_dbgfmt_generate()
|
D | cv-dbgfmt.h | 53 (yasm_object *object, yasm_linemap *linemap, yasm_errwarns *errwarns); 56 yasm_section *yasm_cv__generate_type(yasm_object *object);
|
D | cv-symline.c | 270 cv8_add_sym_compile(yasm_object *object, yasm_section *sect, in cv8_add_sym_compile() 416 yasm_object *object; 554 yasm_cv__generate_symline(yasm_object *object, yasm_linemap *linemap, in yasm_cv__generate_symline() 734 yasm_object *object = yasm_section_get_object(bc->section); in cv8_symhead_bc_tobytes() 808 yasm_object *object = yasm_section_get_object(bc->section); in cv8_fileinfo_bc_tobytes() 876 yasm_object *object = yasm_section_get_object(bc->section); in cv8_lineinfo_bc_tobytes() 1033 yasm_object *object = yasm_section_get_object(bc->section); in cv_sym_bc_tobytes()
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/null/ |
D | null-dbgfmt.c | 36 null_dbgfmt_create(yasm_object *object) in null_dbgfmt_create() 50 null_dbgfmt_generate(yasm_object *object, yasm_linemap *linemap, in null_dbgfmt_generate()
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/ |
D | elf-objfmt.c | 68 yasm_object *object; 74 yasm_object *object; 90 yasm_object *object) in elf_objfmt_symtab_append() 114 build_extern(yasm_objfmt_elf *objfmt_elf, yasm_symrec *sym, yasm_object *object) in build_extern() 171 build_global(yasm_objfmt_elf *objfmt_elf, yasm_symrec *sym, yasm_object *object) in build_global() 211 build_common(yasm_objfmt_elf *objfmt_elf, yasm_symrec *sym, yasm_object *object) in build_common() 348 elf_objfmt_create_common(yasm_object *object, yasm_objfmt_module *module, in elf_objfmt_create_common() 389 elf_objfmt_create(yasm_object *object) in elf_objfmt_create() 409 elf32_objfmt_create(yasm_object *object) in elf32_objfmt_create() 415 elf64_objfmt_create(yasm_object *object) in elf64_objfmt_create() [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/ |
D | coff-objfmt.c | 197 yasm_object *object; 276 coff_common_create(yasm_object *object) in coff_common_create() 307 coff_objfmt_create(yasm_object *object) in coff_objfmt_create() 331 win32_objfmt_create(yasm_object *object) in win32_objfmt_create() 371 win64_objfmt_create(yasm_object *object) in win64_objfmt_create() 397 yasm_object *object = yasm_section_get_object(sect); in coff_objfmt_init_new_section() 1164 coff_objfmt_output(yasm_object *object, FILE *f, int all_syms, in coff_objfmt_output() 1294 coff_objfmt_add_default_section(yasm_object *object) in coff_objfmt_add_default_section() 1397 coff_objfmt_section_switch(yasm_object *object, yasm_valparamhead *valparams, in coff_objfmt_section_switch() 1603 coff_objfmt_get_special_sym(yasm_object *object, const char *name, in coff_objfmt_get_special_sym() [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/ |
D | x86arch.c | 144 x86_dir_cpu(yasm_object *object, yasm_valparamhead *valparams, in x86_dir_cpu() 172 x86_dir_bits(yasm_object *object, yasm_valparamhead *valparams, in x86_dir_bits() 195 x86_dir_code16(yasm_object *object, yasm_valparamhead *valparams, in x86_dir_code16() 203 x86_dir_code32(yasm_object *object, yasm_valparamhead *valparams, in x86_dir_code32() 211 x86_dir_code64(yasm_object *object, yasm_valparamhead *valparams, in x86_dir_code64()
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/ |
D | xdf-objfmt.c | 89 yasm_object *object; 122 xdf_objfmt_create(yasm_object *object) in xdf_objfmt_create() 539 xdf_objfmt_output(yasm_object *object, FILE *f, int all_syms, in xdf_objfmt_output() 609 yasm_object *object = yasm_section_get_object(sect); in xdf_objfmt_init_new_section() 632 xdf_objfmt_add_default_section(yasm_object *object) in xdf_objfmt_add_default_section() 647 yasm_object *object = (yasm_object *)obj; in xdf_helper_use() 660 xdf_objfmt_section_switch(yasm_object *object, yasm_valparamhead *valparams, in xdf_objfmt_section_switch() 772 xdf_objfmt_get_special_sym(yasm_object *object, const char *name, in xdf_objfmt_get_special_sym()
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/ |
D | rdf-objfmt.c | 118 yasm_object *object; 162 rdf_objfmt_create(yasm_object *object) in rdf_objfmt_create() 666 rdf_objfmt_output(yasm_object *object, FILE *f, int all_syms, in rdf_objfmt_output() 816 yasm_object *object = yasm_section_get_object(sect); in rdf_objfmt_init_new_section() 836 rdf_objfmt_add_default_section(yasm_object *object) in rdf_objfmt_add_default_section() 879 rdf_objfmt_section_switch(yasm_object *object, yasm_valparamhead *valparams, in rdf_objfmt_section_switch() 965 rdf_objfmt_get_special_sym(yasm_object *object, const char *name, in rdf_objfmt_get_special_sym() 1008 rdf_objfmt_add_libmodule(yasm_object *object, char *name, int lib) in rdf_objfmt_add_libmodule() 1030 dir_library(yasm_object *object, yasm_valparamhead *valparams, in dir_library() 1038 dir_module(yasm_object *object, yasm_valparamhead *valparams, in dir_module()
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/ |
D | macho-objfmt.c | 294 yasm_object *object; 341 macho_objfmt_create_common(yasm_object *object, yasm_objfmt_module *module, in macho_objfmt_create_common() 376 macho_objfmt_create(yasm_object *object) in macho_objfmt_create() 394 macho32_objfmt_create(yasm_object *object) in macho32_objfmt_create() 400 macho64_objfmt_create(yasm_object *object) in macho64_objfmt_create() 1031 macho_objfmt_output(yasm_object *object, FILE *f, int all_syms, in macho_objfmt_output() 1266 yasm_object *object = yasm_section_get_object(sect); in macho_objfmt_init_new_section() 1290 macho_objfmt_add_default_section(yasm_object *object) in macho_objfmt_add_default_section() 1310 macho_objfmt_section_switch(yasm_object *object, yasm_valparamhead *valparams, in macho_objfmt_section_switch() 1511 macho_objfmt_get_special_sym(yasm_object *object, const char *name, in macho_objfmt_get_special_sym()
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/ |
D | bin-objfmt.c | 103 bin_objfmt_create(yasm_object *object) in bin_objfmt_create() 188 yasm_object *object; 541 yasm_object *object; /* object */ 1106 bin_objfmt_output(yasm_object *object, FILE *f, /*@unused@*/ int all_syms, in bin_objfmt_output() 1393 yasm_object *object = yasm_section_get_object(sect); in bin_objfmt_init_new_section() 1420 bin_objfmt_add_default_section(yasm_object *object) in bin_objfmt_add_default_section() 1441 bin_objfmt_section_switch(yasm_object *object, yasm_valparamhead *valparams, in bin_objfmt_section_switch() 1586 bin_objfmt_get_special_sym(yasm_object *object, const char *name, in bin_objfmt_get_special_sym() 1593 bin_objfmt_dir_org(yasm_object *object, in bin_objfmt_dir_org() 1645 bin_objfmt_dir_map(yasm_object *object, in bin_objfmt_dir_map() [all …]
|