HomeSort by relevance Sort by last modified time
    Searched refs:objfmt (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
objfmt.h 2 * \file libyasm/objfmt.h
100 void (*destroy) (/*@only@*/ yasm_objfmt *objfmt);
150 * \param objfmt object format
152 void yasm_objfmt_destroy(/*@only@*/ yasm_objfmt *objfmt);
192 /* Inline macro implementations for objfmt functions */
197 ((yasm_objfmt_base *)((object)->objfmt))->module->output \
199 #define yasm_objfmt_destroy(objfmt) \
200 ((yasm_objfmt_base *)objfmt)->module->destroy(objfmt)
202 ((yasm_objfmt_base *)((object)->objfmt))->module->section_switch
    [all...]
module.in 128 yasm_objfmt_module *objfmt;
143 objfmt = data;
144 printfunc(objfmt->name, objfmt->keyword);
section.h 55 /*@owned@*/ yasm_objfmt *objfmt; /**< Object format */ member in struct:yasm_object
section.c 49 #include "objfmt.h"
245 object->objfmt = yasm_objfmt_create(objfmt_module, object);
246 if (!object->objfmt) {
255 objfmt_module = ((yasm_objfmt_base *)object->objfmt)->module;
286 ((yasm_objfmt_base *)object->objfmt)->module->directives);
457 if (object->objfmt)
458 yasm_objfmt_destroy(object->objfmt);
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/dbg/
dbg-objfmt.c 33 yasm_objfmt_base objfmt; /* base structure */ member in struct:yasm_objfmt_dbg
46 objfmt_dbg->objfmt.module = &yasm_dbg_LTX_objfmt;
61 yasm_objfmt_dbg *objfmt_dbg = (yasm_objfmt_dbg *)object->objfmt;
72 /* Reassign objfmt debug file to output file */
84 dbg_objfmt_destroy(yasm_objfmt *objfmt)
86 yasm_objfmt_dbg *objfmt_dbg = (yasm_objfmt_dbg *)objfmt;
88 yasm_xfree(objfmt);
95 yasm_objfmt_dbg *objfmt_dbg = (yasm_objfmt_dbg *)object->objfmt;
105 yasm_objfmt_dbg *objfmt_dbg = (yasm_objfmt_dbg *)object->objfmt;
123 yasm_objfmt_dbg *objfmt_dbg = (yasm_objfmt_dbg *)object->objfmt;
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/
splint.sh 69 modules/objfmts/bin/bin-objfmt.c \
70 modules/objfmts/coff/coff-objfmt.c \
72 modules/objfmts/dbg/dbg-objfmt.c \
73 modules/objfmts/elf/elf-objfmt.c \
77 modules/objfmts/macho/macho-objfmt.c \
78 modules/objfmts/rdf/rdf-objfmt.c \
79 modules/objfmts/xdf/xdf-objfmt.c \
libyasm.h 64 #include <libyasm/objfmt.h>
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
elf-objfmt.c 31 * elf-objfmt uses the "linking" view of an ELF file:
52 yasm_objfmt_base objfmt; /* base structure */ member in struct:yasm_objfmt_elf
357 objfmt_elf->objfmt.module = module;
392 yasm_objfmt *objfmt; local
395 objfmt = elf_objfmt_create_common(object, &yasm_elf_LTX_objfmt, 0,
397 if (objfmt) {
398 objfmt_elf = (yasm_objfmt_elf *)objfmt;
401 objfmt_elf->objfmt.module = &yasm_elf32_LTX_objfmt;
403 objfmt_elf->objfmt.module = &yasm_elf64_LTX_objfmt;
405 return objfmt;
    [all...]
  /external/chromium_org/third_party/yasm/source/config/android/
Makefile 375 stabs-dbgfmt.$(OBJEXT) dbg-objfmt.$(OBJEXT) \
376 bin-objfmt.$(OBJEXT) elf.$(OBJEXT) elf-objfmt.$(OBJEXT) \
378 coff-objfmt.$(OBJEXT) win64-except.$(OBJEXT) \
379 macho-objfmt.$(OBJEXT) rdf-objfmt.$(OBJEXT) \
380 xdf-objfmt.$(OBJEXT) assocdat.$(OBJEXT) bitvect.$(OBJEXT) \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/ios/
Makefile 375 stabs-dbgfmt.$(OBJEXT) dbg-objfmt.$(OBJEXT) \
376 bin-objfmt.$(OBJEXT) elf.$(OBJEXT) elf-objfmt.$(OBJEXT) \
378 coff-objfmt.$(OBJEXT) win64-except.$(OBJEXT) \
379 macho-objfmt.$(OBJEXT) rdf-objfmt.$(OBJEXT) \
380 xdf-objfmt.$(OBJEXT) assocdat.$(OBJEXT) bitvect.$(OBJEXT) \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/linux/
Makefile 375 stabs-dbgfmt.$(OBJEXT) dbg-objfmt.$(OBJEXT) \
376 bin-objfmt.$(OBJEXT) elf.$(OBJEXT) elf-objfmt.$(OBJEXT) \
378 coff-objfmt.$(OBJEXT) win64-except.$(OBJEXT) \
379 macho-objfmt.$(OBJEXT) rdf-objfmt.$(OBJEXT) \
380 xdf-objfmt.$(OBJEXT) assocdat.$(OBJEXT) bitvect.$(OBJEXT) \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/mac/
Makefile 375 stabs-dbgfmt.$(OBJEXT) dbg-objfmt.$(OBJEXT) \
376 bin-objfmt.$(OBJEXT) elf.$(OBJEXT) elf-objfmt.$(OBJEXT) \
378 coff-objfmt.$(OBJEXT) win64-except.$(OBJEXT) \
379 macho-objfmt.$(OBJEXT) rdf-objfmt.$(OBJEXT) \
380 xdf-objfmt.$(OBJEXT) assocdat.$(OBJEXT) bitvect.$(OBJEXT) \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/openbsd/
Makefile 375 stabs-dbgfmt.$(OBJEXT) dbg-objfmt.$(OBJEXT) \
376 bin-objfmt.$(OBJEXT) elf.$(OBJEXT) elf-objfmt.$(OBJEXT) \
378 coff-objfmt.$(OBJEXT) win64-except.$(OBJEXT) \
379 macho-objfmt.$(OBJEXT) rdf-objfmt.$(OBJEXT) \
380 xdf-objfmt.$(OBJEXT) assocdat.$(OBJEXT) bitvect.$(OBJEXT) \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/win/
Makefile 375 stabs-dbgfmt.$(OBJEXT) dbg-objfmt.$(OBJEXT) \
376 bin-objfmt.$(OBJEXT) elf.$(OBJEXT) elf-objfmt.$(OBJEXT) \
378 coff-objfmt.$(OBJEXT) win64-except.$(OBJEXT) \
379 macho-objfmt.$(OBJEXT) rdf-objfmt.$(OBJEXT) \
380 xdf-objfmt.$(OBJEXT) assocdat.$(OBJEXT) bitvect.$(OBJEXT) \
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/
macho-objfmt.c 4 * Copyright (C) 2007 Henryk Richter, built upon xdf objfmt (C) Peter Johnson
284 yasm_objfmt_base objfmt; /* base structure */ member in struct:yasm_objfmt_macho
346 objfmt_macho->objfmt.module = module;
378 yasm_objfmt *objfmt; local
381 objfmt = macho_objfmt_create_common(object, &yasm_macho_LTX_objfmt, 0);
382 if (objfmt) {
383 objfmt_macho = (yasm_objfmt_macho *)objfmt;
386 objfmt_macho->objfmt.module = &yasm_macho32_LTX_objfmt;
388 objfmt_macho->objfmt.module = &yasm_macho64_LTX_objfmt;
390 return objfmt;
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
coff-objfmt.c 32 #include "coff-objfmt.h"
175 yasm_objfmt_base objfmt; /* base structure */ member in struct:yasm_objfmt_coff
323 objfmt_coff->objfmt.module = &yasm_coff_LTX_objfmt;
342 objfmt_coff->objfmt.module = &yasm_win32_LTX_objfmt;
347 objfmt_coff->objfmt.module = &yasm_win64_LTX_objfmt;
385 objfmt_coff->objfmt.module = &yasm_win64_LTX_objfmt;
399 yasm_objfmt_coff *objfmt_coff = (yasm_objfmt_coff *)object->objfmt;
639 yasm_internal_error(N_("coff objfmt: unrecognized machine"));
646 yasm_internal_error(N_("coff objfmt: unrecognized machine"));
653 yasm_internal_error(N_("coff objfmt: unrecognized machine"))
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/
rdf-objfmt.c 109 yasm_objfmt_base objfmt; /* base structure */ member in struct:yasm_objfmt_rdf
175 objfmt_rdf->objfmt.module = &yasm_rdf_LTX_objfmt;
669 yasm_objfmt_rdf *objfmt_rdf = (yasm_objfmt_rdf *)object->objfmt;
789 rdf_objfmt_destroy(yasm_objfmt *objfmt)
791 yasm_objfmt_rdf *objfmt_rdf = (yasm_objfmt_rdf *)objfmt;
810 yasm_xfree(objfmt);
818 yasm_objfmt_rdf *objfmt_rdf = (yasm_objfmt_rdf *)object->objfmt;
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/
xdf-objfmt.c 83 yasm_objfmt_base objfmt; /* base structure */ member in struct:yasm_objfmt_xdf
141 objfmt_xdf->objfmt.module = &yasm_xdf_LTX_objfmt;
542 yasm_objfmt_xdf *objfmt_xdf = (yasm_objfmt_xdf *)object->objfmt;
601 xdf_objfmt_destroy(yasm_objfmt *objfmt)
603 yasm_xfree(objfmt);
611 yasm_objfmt_xdf *objfmt_xdf = (yasm_objfmt_xdf *)object->objfmt;
828 /* Define objfmt structure -- see objfmt.h for details */
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/
bin-objfmt.c 57 yasm_objfmt_base objfmt; /* base structure */ member in struct:yasm_objfmt_bin
106 objfmt_bin->objfmt.module = &yasm_bin_LTX_objfmt;
738 yasm_objfmt_bin *objfmt_bin = (yasm_objfmt_bin *)info->object->objfmt;
    [all...]
  /external/chromium_org/third_party/yasm/
yasm.host.darwin-x86.mk 221 third_party/yasm/source/patched-yasm/modules/objfmts/bin/bin-objfmt.c \
222 third_party/yasm/source/patched-yasm/modules/objfmts/coff/coff-objfmt.c \
224 third_party/yasm/source/patched-yasm/modules/objfmts/dbg/dbg-objfmt.c \
225 third_party/yasm/source/patched-yasm/modules/objfmts/elf/elf-objfmt.c \
229 third_party/yasm/source/patched-yasm/modules/objfmts/macho/macho-objfmt.c \
230 third_party/yasm/source/patched-yasm/modules/objfmts/rdf/rdf-objfmt.c \
231 third_party/yasm/source/patched-yasm/modules/objfmts/xdf/xdf-objfmt.c \
yasm.host.linux-x86.mk 221 third_party/yasm/source/patched-yasm/modules/objfmts/bin/bin-objfmt.c \
222 third_party/yasm/source/patched-yasm/modules/objfmts/coff/coff-objfmt.c \
224 third_party/yasm/source/patched-yasm/modules/objfmts/dbg/dbg-objfmt.c \
225 third_party/yasm/source/patched-yasm/modules/objfmts/elf/elf-objfmt.c \
229 third_party/yasm/source/patched-yasm/modules/objfmts/macho/macho-objfmt.c \
230 third_party/yasm/source/patched-yasm/modules/objfmts/rdf/rdf-objfmt.c \
231 third_party/yasm/source/patched-yasm/modules/objfmts/xdf/xdf-objfmt.c \
  /external/chromium_org/third_party/yasm/source/patched-yasm/frontends/tasm/
tasm.c 328 cur_objfmt_module = ((yasm_objfmt_base *)object->objfmt)->module;
378 /* open the object file for output (if not already opened by dbg objfmt) */
  /external/chromium_org/third_party/yasm/source/patched-yasm/frontends/yasm/
yasm.c 382 /* If we're using x86 and the default objfmt bits is 64, default the
434 cur_objfmt_module = ((yasm_objfmt_base *)object->objfmt)->module;
517 /* open the object file for output (if not already opened by dbg objfmt) */
    [all...]

Completed in 828 milliseconds