Searched defs:sectname (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/stabs/
H A Dstabs-dbgfmt.c288 const char *sectname=yasm_section_get_name(sect); local
299 if (yasm__strcasecmp(sectname, ".text")==0) {
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
H A Delf-objfmt.c642 const char *sectname; local
692 sectname = yasm_section_get_name(sect);
693 relname = elf_secthead_name_reloc_section(sectname);
887 const char *sectname = yasm_section_get_name(sect); local
892 sectname);
897 if (yasm__strcasecmp(sectname, ".stab")==0) {
899 } else if (yasm__strcasecmp(sectname, ".stabstr")==0) {
906 sym = yasm_symtab_define_label(object->symtab, sectname,
1002 const char *sectname; local
1045 sectname
[all...]
H A Delf.c712 char *sectname = yasm_xmalloc(prepend_length + strlen(basesect) + 1); local
713 strcpy(sectname, elf_march->reloc_section_prefix);
714 strcat(sectname, basesect);
715 return sectname;
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/
H A Drdf-objfmt.c817 const char *sectname = yasm_section_get_name(sect); local
830 sym = yasm_symtab_define_label(object->symtab, sectname,
889 const char *sectname; local
921 sectname = yasm_vp_string(vp);
922 if (!sectname)
926 if (strcmp(sectname, ".text") == 0)
928 else if (strcmp(sectname, ".data") == 0)
930 else if (strcmp(sectname, ".bss") == 0)
949 retval = yasm_object_get_general(object, sectname, 0, 1,
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/
H A Dxdf-objfmt.c610 const char *sectname = yasm_section_get_name(sect); local
626 sym = yasm_symtab_define_label(object->symtab, sectname,
669 const char *sectname; local
706 sectname = yasm_vp_string(vp);
707 if (!sectname)
746 retval = yasm_object_get_general(object, sectname, align, 1, resonly,
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
H A Dgas-parse.c735 char *sectname, *flags = NULL, *type = NULL; local
740 sectname = ID_val;
748 yasm_xfree(sectname);
758 yasm_xfree(sectname);
764 yasm_xfree(sectname);
778 gas_switch_section(parser_gas, sectname, flags, type,
780 yasm_xfree(sectname);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/
H A Dbin-objfmt.c71 /* symrec data is used only for the special symbols section<sectname>.start,
72 * section<sectname>.vstart, and section<sectname>.length
1371 const char *sectname, const char *suffix,
1376 char *symname = yasm_xmalloc(8+strlen(sectname)+strlen(suffix)+1);
1379 strcat(symname, sectname);
1394 const char *sectname = yasm_section_get_name(sect); local
1411 define_section_symbol(object->symtab, sect, sectname, ".start",
1413 define_section_symbol(object->symtab, sect, sectname, ".vstart",
1415 define_section_symbol(object->symtab, sect, sectname, "
1370 define_section_symbol(yasm_symtab *symtab, yasm_section *sect, const char *sectname, const char *suffix, enum bin_ssym which, unsigned long line) argument
1450 const char *sectname; local
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/
H A Dmacho-objfmt.c266 /*@only@*/ char *sectname; /* section name in file */ member in struct:macho_section_data
745 strncpy((char *)localbuf, msd->sectname, 16);
1267 const char *sectname = yasm_section_get_name(sect); local
1275 data->sectname = NULL;
1284 sym = yasm_symtab_define_label(object->symtab, sectname,
1301 msd->sectname = yasm__xstrdup("__text");
1322 const char *sectname; local
1409 sectname = yasm_vp_string(vp);
1410 if (!sectname)
1416 if (yasm__strcasecmp(sectname, section_name_translatio
[all...]
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp42 char sectname[16]; member in struct:llvm::object::section_base
1671 return ArrayRef<char>(Base->sectname);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
H A Dcoff-objfmt.c398 const char *sectname = yasm_section_get_name(sect); local
415 if (yasm__strncasecmp(sectname, ".debug", 6)==0) {
425 sym = yasm_symtab_define_label(object->symtab, sectname,
1408 const char *sectname; local
1474 sectname = yasm_vp_string(vp);
1475 if (!sectname)
1485 if (strcmp(sectname, ".data") == 0) {
1493 } else if (strcmp(sectname, ".bss") == 0) {
1502 } else if (strcmp(sectname, ".text") == 0) {
1506 } else if (strcmp(sectname, "
1811 const char *sectname; local
[all...]
/external/chromium_org/v8/src/
H A Dgdb-jit.cc197 char sectname[16]; member in struct:v8::MachOSectionHeader
247 memset(header->sectname, 0, sizeof(header->sectname));
249 DCHECK(strlen(name_) < sizeof(header->sectname));
251 strncpy(header->sectname, name_, sizeof(header->sectname));
/external/llvm/include/llvm/Support/
H A DMachO.h585 char sectname[16]; member in struct:llvm::MachO::section
599 char sectname[16]; member in struct:llvm::MachO::section_64

Completed in 273 milliseconds