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

1 2

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
symrec.h 66 * \warning All yasm_symrec *'s into this symbol table become invalid after
88 /*@dependent@*/ yasm_symrec *yasm_symtab_abs_sym(yasm_symtab *symtab);
98 /*@dependent@*/ yasm_symrec *yasm_symtab_use
110 /*@null@*/ /*@dependent@*/ yasm_symrec *yasm_symtab_get
121 /*@dependent@*/ yasm_symrec *yasm_symtab_define_equ
135 /*@dependent@*/ yasm_symrec *yasm_symtab_define_label
150 /*@dependent@*/ yasm_symrec *yasm_symtab_define_curpos
163 /*@dependent@*/ yasm_symrec *yasm_symtab_define_special
175 /*@dependent@*/ yasm_symrec *yasm_symtab_declare
186 void yasm_symrec_declare(yasm_symrec *symrec, yasm_sym_vis vis
    [all...]
symrec.c 60 struct yasm_symrec { struct
84 /*@owned@*/ yasm_symrec *rec;
152 yasm_symrec *sym = d;
160 static /*@partial@*/ yasm_symrec *
163 yasm_symrec *rec = yasm_xmalloc(sizeof(yasm_symrec));
183 static /*@partial@*/ /*@dependent@*/ yasm_symrec *
186 yasm_symrec *rec = symrec_new_common(name, symtab->case_sensitive);
201 static /*@partial@*/ /*@dependent@*/ yasm_symrec *
216 static /*@partial@*/ /*@dependent@*/ yasm_symrec *
    [all...]
coretype.h 105 typedef struct yasm_symrec yasm_symrec; typedef in typeref:struct:yasm_symrec
131 /*@null@*/ /*@dependent@*/ yasm_symrec *rel;
134 /*@null@*/ /*@dependent@*/ yasm_symrec *wrt;
295 (yasm_symrec *sym, yasm_bytecode *bc, unsigned char *buf,
value.h 62 /*@null@*/ yasm_symrec *sym, unsigned int size);
expr.h 60 yasm_symrec *sym; /**< Symbol (YASM_EXPR_SYM) */
106 /*@only@*/ yasm_expr__item *yasm_expr_sym(/*@keep@*/ yasm_symrec *sym);
276 /*@dependent@*/ /*@null@*/ const yasm_symrec *yasm_expr_get_symrec
objfmt.h 123 /*@observer@*/ /*@null@*/ yasm_symrec *
187 /*@observer@*/ /*@null@*/ yasm_symrec *yasm_objfmt_get_special_sym
section.h 45 /*@dependent@*/ yasm_symrec *sym; /**< Relocated symbol */
303 /*@dependent@*/ yasm_symrec **symp);
bytecode.c 121 yasm_bc__add_symrec(yasm_bytecode *bc, yasm_symrec *sym)
124 bc->symrecs = yasm_xmalloc(2*sizeof(yasm_symrec *));
135 (count+2)*sizeof(yasm_symrec *));
bytecode.h 224 /*@null@*/ yasm_symrec **symrecs;
405 void yasm_bc__add_symrec(yasm_bytecode *bc, /*@dependent@*/ yasm_symrec *sym);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
coff-objfmt.h 33 /*@dependent@*/ yasm_symrec *proc; /* Start of procedure */
34 /*@dependent@*/ yasm_symrec *loc; /* Location of operation */
52 /*@dependent@*/ yasm_symrec *proc; /* Start of procedure */
53 /*@dependent@*/ yasm_symrec *prolog; /* End of prologue */
55 /*@null@*/ /*@dependent@*/ yasm_symrec *ehandler; /* Error handler */
coff-objfmt.c 107 /*@dependent@*/ yasm_symrec *sym; /* symbol created for this section */
193 yasm_symrec *ssym_imagebase; /* ..imagebase symbol for win64 */
256 coff_objfmt_sym_set_data(yasm_symrec *sym, coff_symrec_sclass sclass,
279 yasm_symrec *filesym;
357 yasm_symrec *feat00;
401 yasm_symrec *sym;
494 /*@dependent@*/ /*@null@*/ yasm_symrec *sym = value->rel;
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
elf.h 360 yasm_symrec *sym;
393 /*@null@*/ yasm_symrec *wrt;
408 yasm_symrec *sym;
432 yasm_symrec *elf_get_special_sym(const char *name, const char *parser);
435 int elf_is_wrt_sym_relative(yasm_symrec *wrt);
436 int elf_is_wrt_pos_adjusted(yasm_symrec *wrt);
437 elf_reloc_entry *elf_reloc_entry_create(yasm_symrec *sym,
438 /*@null@*/ yasm_symrec *wrt,
455 struct yasm_symrec *sym);
492 struct yasm_symrec *elf_secthead_get_sym(elf_secthead *shead)
    [all...]
elf-machine.h 47 typedef int(*func_accepts_reloc)(size_t val, yasm_symrec *wrt);
elf.c 71 static yasm_symrec **elf_ssyms;
93 yasm_xmalloc(elf_march->num_ssyms * sizeof(yasm_symrec *));
108 yasm_symrec *
120 int elf_ssym_has_flag(yasm_symrec *wrt, int flag);
123 elf_is_wrt_sym_relative(yasm_symrec *wrt)
129 elf_is_wrt_pos_adjusted(yasm_symrec *wrt)
135 elf_ssym_has_flag(yasm_symrec *wrt, int flag)
147 elf_reloc_entry_create(yasm_symrec *sym,
148 yasm_symrec *wrt,
293 yasm_symrec *sym
    [all...]
elf-objfmt.c 59 yasm_symrec *dotdotsym; /* ..sym symbol */
70 yasm_symrec *GOT_sym;
86 elf_objfmt_symtab_append(yasm_objfmt_elf *objfmt_elf, yasm_symrec *sym,
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)
254 elf_objfmt_build_symtab(yasm_symrec *sym, /*@null@*/ void *d)
353 yasm_symrec *filesym;
447 elf_objfmt_output_reloc(yasm_symrec *sym, yasm_bytecode *bc,
515 /*@dependent@*/ /*@null@*/ yasm_symrec *sym = value->rel
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-dbgfmt.h 82 yasm_symrec *sym; /* last symbol preceding */
97 /*@dependent@*/ yasm_symrec *yasm_dwarf2__bc_sym(yasm_symtab *symtab,
dwarf2-dbgfmt.c 177 yasm_symrec *
180 /*@dependent@*/ yasm_symrec *sym;
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
symrec.pxi 27 cdef yasm_symrec *sym
32 self.sym = <yasm_symrec *>__get_voidp(symrec, Symbol)
107 cdef object __make_symbol(yasm_symrec *symrec):
172 cdef yasm_symrec *sym
229 cdef yasm_symrec *symrec
236 cdef yasm_symrec *symrec
260 cdef yasm_symrec *sym
270 cdef yasm_symrec *symrec
275 cdef yasm_symrec *symrec
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/stabs/
stabs-dbgfmt.c 108 /*@null@*/ yasm_symrec *symvalue; /* value element needing relocation */
199 unsigned long desc, /*@null@*/ yasm_symrec *symvalue,
232 yasm_symrec *sym = bc->symrecs[bcsym];
302 yasm_symrec *sym =
320 yasm_symrec *firstsym;
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/listfmts/nasm/
nasm-listfmt.c 114 yasm_symrec *sym;
188 yasm_symrec *sym;
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/
rdf-objfmt.c 80 /*@dependent@*/ yasm_symrec *sym; /* symbol created for this section */
151 rdf_objfmt_sym_set_data(yasm_symrec *sym, unsigned int segment)
472 yasm_symrec *sym = (yasm_symrec *)obj;
487 rdf_parse_flags(yasm_symrec *sym)
518 rdf_objfmt_output_sym(yasm_symrec *sym, /*@null@*/ void *d)
820 yasm_symrec *sym;
964 static /*@observer@*/ /*@null@*/ yasm_symrec *
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/
xdf-objfmt.c 42 /*@null@*/ yasm_symrec *base; /* base symbol (for WRT) */
59 /*@dependent@*/ yasm_symrec *sym; /* symbol created for this section */
422 xdf_objfmt_count_sym(yasm_symrec *sym, /*@null@*/ void *d)
446 xdf_objfmt_output_sym(yasm_symrec *sym, /*@null@*/ void *d)
522 xdf_objfmt_output_str(yasm_symrec *sym, /*@null@*/ void *d)
613 yasm_symrec *sym;
771 static /*@observer@*/ /*@null@*/ yasm_symrec *
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/dbg/
dbg-objfmt.c 149 static /*@observer@*/ /*@null@*/ yasm_symrec *
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/
macho-objfmt.c 263 /*@dependent@*/ yasm_symrec *sym; /* symbol created for this section */
289 yasm_symrec *gotpcrel_sym; /* ..gotpcrel */
702 macho_objfmt_is_section_label(yasm_symrec *sym)
796 macho_objfmt_count_sym(yasm_symrec *sym, /*@null@*/ void *d)
830 macho_objfmt_output_symtable(yasm_symrec *sym, /*@null@*/ void *d)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv-symline.c 134 yasm_symrec *sectsym; /* symbol for beginning of sect */
300 cv8_add_sym_label(yasm_section *sect, yasm_symrec *sym)
317 cv8_add_sym_data(yasm_section *sect, unsigned long type, yasm_symrec *sym,
531 cv_generate_sym(yasm_symrec *sym, void *d)
661 cv_out_sym(yasm_symrec *sym, unsigned long off, yasm_bytecode *bc,
    [all...]

Completed in 125 milliseconds

1 2