Searched defs:objfmt (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dsection.h55 /*@owned@*/ yasm_objfmt *objfmt; /**< Object format */ member in struct:yasm_object
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/dbg/
H A Ddbg-objfmt.c33 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) argument
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/modules/objfmts/elf/
H A Delf-objfmt.c31 * 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;
874 elf_objfmt_destroy(yasm_objfmt *objfmt) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/
H A Drdf-objfmt.c109 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) argument
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;
1010 yasm_objfmt_rdf *objfmt_rdf = (yasm_objfmt_rdf *)object->objfmt;
1072 /* Define objfmt structure -- see objfmt
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/
H A Dxdf-objfmt.c83 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) argument
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/
H A Dbin-objfmt.c57 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;
1109 yasm_objfmt_bin *objfmt_bin = (yasm_objfmt_bin *)object->objfmt;
1360 bin_objfmt_destroy(yasm_objfmt *objfmt) argument
1362 yasm_objfmt_bin *objfmt_bin = (yasm_objfmt_bin *)objfmt;
1366 yasm_xfree(objfmt);
1395 /*yasm_objfmt_bin *objfmt_bin = (yasm_objfmt_bin *)object->objfmt;*/
1598 yasm_objfmt_bin *objfmt_bin = (yasm_objfmt_bin *)object->objfmt;
1650 yasm_objfmt_bin *objfmt_bin = (yasm_objfmt_bin *)object->objfmt;
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/
H A Dmacho-objfmt.c4 * 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;
1258 macho_objfmt_destroy(yasm_objfmt *objfmt) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
H A Dcoff-objfmt.c32 #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
1283 coff_objfmt_destroy(yasm_objfmt *objfmt) argument
[all...]

Completed in 149 milliseconds