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

1 2

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/null/
null-dbgfmt.c 38 yasm_dbgfmt_base *dbgfmt = yasm_xmalloc(sizeof(yasm_dbgfmt_base)); local
39 dbgfmt->module = &yasm_null_LTX_dbgfmt;
40 return (yasm_dbgfmt *)dbgfmt;
44 null_dbgfmt_destroy(/*@only@*/ yasm_dbgfmt *dbgfmt)
46 yasm_xfree(dbgfmt);
56 /* Define dbgfmt structure -- see dbgfmt.h for details */
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
dbgfmt.h 2 * \file libyasm/dbgfmt.h
65 void (*destroy) (/*@only@*/ yasm_dbgfmt *dbgfmt);
75 * \param dbgfmt debug format
78 const char *yasm_dbgfmt_keyword(const yasm_dbgfmt *dbgfmt);
91 * \param dbgfmt debug format
93 void yasm_dbgfmt_destroy(/*@only@*/ yasm_dbgfmt *dbgfmt);
106 /* Inline macro implementations for dbgfmt functions */
108 #define yasm_dbgfmt_keyword(dbgfmt) \
109 (((yasm_dbgfmt_base *)dbgfmt)->module->keyword)
114 #define yasm_dbgfmt_destroy(dbgfmt) \
    [all...]
module.in 127 yasm_dbgfmt_module *dbgfmt;
139 dbgfmt = data;
140 printfunc(dbgfmt->name, dbgfmt->keyword);
section.h 56 /*@owned@*/ yasm_dbgfmt *dbgfmt; /**< Debug format */ member in struct:yasm_object
section.c 48 #include "dbgfmt.h"
242 object->dbgfmt = NULL;
276 object->dbgfmt = yasm_dbgfmt_create(dbgfmt_module, object);
277 if (!object->dbgfmt) {
288 ((yasm_dbgfmt_base *)object->dbgfmt)->module->directives);
459 if (object->dbgfmt)
460 yasm_dbgfmt_destroy(object->dbgfmt);
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv-dbgfmt.c 31 #include "cv-dbgfmt.h"
42 dbgfmt_cv->dbgfmt.module = module;
67 cv_dbgfmt_destroy(/*@only@*/ yasm_dbgfmt *dbgfmt)
69 yasm_dbgfmt_cv *dbgfmt_cv = (yasm_dbgfmt_cv *)dbgfmt;
76 yasm_xfree(dbgfmt);
99 /* Define dbgfmt structure -- see dbgfmt.h for details */
cv-dbgfmt.h 40 yasm_dbgfmt_base dbgfmt; /* base structure */ member in struct:yasm_dbgfmt_cv
cv-symline.c 34 #include "cv-dbgfmt.h"
557 yasm_dbgfmt_cv *dbgfmt_cv = (yasm_dbgfmt_cv *)object->dbgfmt;
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/
splint.sh 59 modules/dbgfmts/codeview/cv-dbgfmt.c \
63 modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c \
66 modules/dbgfmts/null/null-dbgfmt.c \
67 modules/dbgfmts/stabs/stabs-dbgfmt.c \
libyasm.h 63 #include <libyasm/dbgfmt.h>
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-dbgfmt.c 31 #include "dwarf2-dbgfmt.h"
84 dbgfmt_dwarf2->dbgfmt.module = &yasm_dwarf2_LTX_dbgfmt;
118 dwarf2_dbgfmt_destroy(/*@only@*/ yasm_dbgfmt *dbgfmt)
120 yasm_dbgfmt_dwarf2 *dbgfmt_dwarf2 = (yasm_dbgfmt_dwarf2 *)dbgfmt;
133 yasm_xfree(dbgfmt);
152 yasm_dbgfmt_dwarf2 *dbgfmt_dwarf2 = (yasm_dbgfmt_dwarf2 *)object->dbgfmt;
256 yasm_dbgfmt_dwarf2 *dbgfmt_dwarf2 = (yasm_dbgfmt_dwarf2 *)object->dbgfmt;
340 /* Define dbgfmt structure -- see dbgfmt.h for details */
dwarf2-dbgfmt.h 41 yasm_dbgfmt_base dbgfmt; /* base structure */ member in struct:yasm_dbgfmt_dwarf2
dwarf2-aranges.c 31 #include "dwarf2-dbgfmt.h"
83 yasm_dbgfmt_dwarf2 *dbgfmt_dwarf2 = (yasm_dbgfmt_dwarf2 *)object->dbgfmt;
dwarf2-line.c 34 #include "dwarf2-dbgfmt.h"
690 yasm_dbgfmt_dwarf2 *dbgfmt_dwarf2 = (yasm_dbgfmt_dwarf2 *)object->dbgfmt;
786 yasm_dbgfmt_dwarf2 *dbgfmt_dwarf2 = (yasm_dbgfmt_dwarf2 *)object->dbgfmt;
    [all...]
dwarf2-info.c 31 #include "dwarf2-dbgfmt.h"
263 yasm_dbgfmt_dwarf2 *dbgfmt_dwarf2 = (yasm_dbgfmt_dwarf2 *)object->dbgfmt;
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/stabs/
stabs-dbgfmt.c 81 yasm_dbgfmt_base dbgfmt; /* base structure */ member in struct:yasm_dbgfmt_stabs
166 dbgfmt_stabs->dbgfmt.module = &yasm_stabs_LTX_dbgfmt;
171 stabs_dbgfmt_destroy(/*@only@*/ yasm_dbgfmt *dbgfmt)
173 yasm_xfree(dbgfmt);
503 /* Define dbgfmt structure -- see dbgfmt.h for details */
  /external/chromium_org/third_party/yasm/source/config/android/
Makefile 371 cpp-preproc.$(OBJEXT) cv-dbgfmt.$(OBJEXT) cv-symline.$(OBJEXT) \
372 cv-type.$(OBJEXT) dwarf2-dbgfmt.$(OBJEXT) \
374 dwarf2-info.$(OBJEXT) null-dbgfmt.$(OBJEXT) \
375 stabs-dbgfmt.$(OBJEXT) dbg-objfmt.$(OBJEXT) \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/ios/
Makefile 371 cpp-preproc.$(OBJEXT) cv-dbgfmt.$(OBJEXT) cv-symline.$(OBJEXT) \
372 cv-type.$(OBJEXT) dwarf2-dbgfmt.$(OBJEXT) \
374 dwarf2-info.$(OBJEXT) null-dbgfmt.$(OBJEXT) \
375 stabs-dbgfmt.$(OBJEXT) dbg-objfmt.$(OBJEXT) \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/linux/
Makefile 371 cpp-preproc.$(OBJEXT) cv-dbgfmt.$(OBJEXT) cv-symline.$(OBJEXT) \
372 cv-type.$(OBJEXT) dwarf2-dbgfmt.$(OBJEXT) \
374 dwarf2-info.$(OBJEXT) null-dbgfmt.$(OBJEXT) \
375 stabs-dbgfmt.$(OBJEXT) dbg-objfmt.$(OBJEXT) \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/mac/
Makefile 371 cpp-preproc.$(OBJEXT) cv-dbgfmt.$(OBJEXT) cv-symline.$(OBJEXT) \
372 cv-type.$(OBJEXT) dwarf2-dbgfmt.$(OBJEXT) \
374 dwarf2-info.$(OBJEXT) null-dbgfmt.$(OBJEXT) \
375 stabs-dbgfmt.$(OBJEXT) dbg-objfmt.$(OBJEXT) \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/openbsd/
Makefile 371 cpp-preproc.$(OBJEXT) cv-dbgfmt.$(OBJEXT) cv-symline.$(OBJEXT) \
372 cv-type.$(OBJEXT) dwarf2-dbgfmt.$(OBJEXT) \
374 dwarf2-info.$(OBJEXT) null-dbgfmt.$(OBJEXT) \
375 stabs-dbgfmt.$(OBJEXT) dbg-objfmt.$(OBJEXT) \
    [all...]
  /external/chromium_org/third_party/yasm/source/config/win/
Makefile 371 cpp-preproc.$(OBJEXT) cv-dbgfmt.$(OBJEXT) cv-symline.$(OBJEXT) \
372 cv-type.$(OBJEXT) dwarf2-dbgfmt.$(OBJEXT) \
374 dwarf2-info.$(OBJEXT) null-dbgfmt.$(OBJEXT) \
375 stabs-dbgfmt.$(OBJEXT) dbg-objfmt.$(OBJEXT) \
    [all...]
  /external/chromium_org/third_party/yasm/
yasm.host.darwin-x86.mk 211 third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/cv-dbgfmt.c \
215 third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c \
218 third_party/yasm/source/patched-yasm/modules/dbgfmts/null/null-dbgfmt.c \
219 third_party/yasm/source/patched-yasm/modules/dbgfmts/stabs/stabs-dbgfmt.c \
yasm.host.linux-x86.mk 211 third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/cv-dbgfmt.c \
215 third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c \
218 third_party/yasm/source/patched-yasm/modules/dbgfmts/null/null-dbgfmt.c \
219 third_party/yasm/source/patched-yasm/modules/dbgfmts/stabs/stabs-dbgfmt.c \
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
elf-objfmt.c 814 if (strcmp(yasm_dbgfmt_keyword(object->dbgfmt), "stabs")==0) {
    [all...]

Completed in 1935 milliseconds

1 2