HomeSort by relevance Sort by last modified time
    Searched refs:yasm_object (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
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,
parser.h 63 (yasm_object *object, yasm_preproc *pp, int save_input,
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...]
section.h 49 struct yasm_object { struct
89 /*@null@*/ /*@only@*/ yasm_object *yasm_object_create
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...]
coretype.h 96 typedef struct yasm_object yasm_object; typedef in typeref:struct:yasm_object
section.c 57 /*@dependent@*/ yasm_object *object; /* Pointer to parent object */
94 dir_extern(yasm_object *object, yasm_valparamhead *valparams,
110 dir_global(yasm_object *object, yasm_valparamhead *valparams,
126 dir_common(yasm_object *object, yasm_valparamhead *valparams,
151 dir_section(yasm_object *object, yasm_valparamhead *valparams,
188 directives_add(yasm_object *object, /*@null@*/ const yasm_directive *dir)
213 yasm_object *
219 yasm_object *object = yasm_xmalloc(sizeof(yasm_object));
303 yasm_object_get_general(yasm_object *object, const char *name
    [all...]
valparam.c 41 yasm_call_directive(const yasm_directive *directive, yasm_object *object,
308 yasm_object *object = (yasm_object *)obj;
325 yasm_object *object = (yasm_object *)obj;
valparam.h 84 void (*handler) (yasm_object *object, yasm_valparamhead *valparams,
105 void yasm_call_directive(const yasm_directive *directive, yasm_object *object,
347 * is used MUST point to a #yasm_object. In addition, the data parameter
351 * \param obj object; must be #yasm_object
365 * is used MUST point to a #yasm_object. In addition, the data parameter
369 * \param obj object; must be #yasm_object
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv-dbgfmt.h 53 (yasm_object *object, yasm_linemap *linemap, yasm_errwarns *errwarns);
56 yasm_section *yasm_cv__generate_type(yasm_object *object);
cv-dbgfmt.c 37 cv_dbgfmt_create(yasm_object *object, yasm_dbgfmt_module *module, int version)
61 cv8_dbgfmt_create(yasm_object *object)
92 cv_dbgfmt_generate(yasm_object *object, yasm_linemap *linemap,
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/null/
null-dbgfmt.c 36 null_dbgfmt_create(yasm_object *object)
50 null_dbgfmt_generate(yasm_object *object, yasm_linemap *linemap,
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
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,
dwarf2-aranges.c 51 yasm_object *object;
81 yasm_dwarf2__generate_aranges(yasm_object *object, yasm_section *debug_info)
dwarf2-dbgfmt.c 78 dwarf2_dbgfmt_create(yasm_object *object)
149 dwarf2_dbgfmt_generate(yasm_object *object, yasm_linemap *linemap,
255 yasm_object *object = yasm_section_get_object(bc->section);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/dbg/
dbg-objfmt.c 42 dbg_objfmt_create(yasm_object *object)
58 dbg_objfmt_output(yasm_object *object, FILE *f, int all_syms,
94 yasm_object *object = yasm_section_get_object(sect);
103 dbg_objfmt_add_default_section(yasm_object *object)
118 dbg_objfmt_section_switch(yasm_object *object, yasm_valparamhead *valparams,
150 dbg_objfmt_get_special_sym(yasm_object *object, const char *name,
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
nasm-parser.c 35 nasm_do_parse(yasm_object *object, yasm_preproc *pp, int save_input,
79 nasm_parser_do_parse(yasm_object *object, yasm_preproc *pp,
111 tasm_parser_do_parse(yasm_object *object, yasm_preproc *pp,
nasm-parser-struct.h 47 /*@only@*/ yasm_object *object;
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
elf-objfmt.c 68 yasm_object *object;
74 yasm_object *object;
90 yasm_object *object)
114 build_extern(yasm_objfmt_elf *objfmt_elf, yasm_symrec *sym, yasm_object *object)
171 build_global(yasm_objfmt_elf *objfmt_elf, yasm_symrec *sym, yasm_object *object)
211 build_common(yasm_objfmt_elf *objfmt_elf, yasm_symrec *sym, yasm_object *object)
348 elf_objfmt_create_common(yasm_object *object, yasm_objfmt_module *module,
389 elf_objfmt_create(yasm_object *object)
409 elf32_objfmt_create(yasm_object *object)
415 elf64_objfmt_create(yasm_object *object
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
gas-parser.c 38 gas_parser_do_parse(yasm_object *object, yasm_preproc *pp,
gas-parser.h 75 /*@only@*/ yasm_object *object;
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
coff-objfmt.c 197 yasm_object *object;
276 coff_common_create(yasm_object *object)
307 coff_objfmt_create(yasm_object *object)
331 win32_objfmt_create(yasm_object *object)
371 win64_objfmt_create(yasm_object *object)
397 yasm_object *object = yasm_section_get_object(sect);
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/
rdf-objfmt.c 118 yasm_object *object;
162 rdf_objfmt_create(yasm_object *object)
666 rdf_objfmt_output(yasm_object *object, FILE *f, int all_syms,
816 yasm_object *object = yasm_section_get_object(sect);
836 rdf_objfmt_add_default_section(yasm_object *object)
879 rdf_objfmt_section_switch(yasm_object *object, yasm_valparamhead *valparams,
965 rdf_objfmt_get_special_sym(yasm_object *object, const char *name,
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/
xdf-objfmt.c 89 yasm_object *object;
122 xdf_objfmt_create(yasm_object *object)
539 xdf_objfmt_output(yasm_object *object, FILE *f, int all_syms,
609 yasm_object *object = yasm_section_get_object(sect);
632 xdf_objfmt_add_default_section(yasm_object *object)
647 yasm_object *object = (yasm_object *)obj;
660 xdf_objfmt_section_switch(yasm_object *object, yasm_valparamhead *valparams,
772 xdf_objfmt_get_special_sym(yasm_object *object, const char *name,
  /external/chromium_org/third_party/yasm/source/patched-yasm/frontends/tasm/
tasm.c 83 /*@only@*/ yasm_object *object,
85 static void cleanup(/*@null@*/ /*@only@*/ yasm_object *object);
259 yasm_object *object;
587 check_errors(yasm_errwarns *errwarns, yasm_object *object,
608 cleanup(yasm_object *object)
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
x86arch.c 144 x86_dir_cpu(yasm_object *object, yasm_valparamhead *valparams,
172 x86_dir_bits(yasm_object *object, yasm_valparamhead *valparams,
195 x86_dir_code16(yasm_object *object, yasm_valparamhead *valparams,
203 x86_dir_code32(yasm_object *object, yasm_valparamhead *valparams,
211 x86_dir_code64(yasm_object *object, yasm_valparamhead *valparams,

Completed in 9409 milliseconds

1 2