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

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
follows-loop2-err.asm 1 section sect follows=sect
vfollows-loop2-err.asm 1 section sect vfollows=sect
  /external/llvm/tools/llvm-c-test/
object.c 23 LLVMSectionIteratorRef sect; local
37 sect = LLVMGetSections(O);
38 while (!LLVMIsSectionIteratorAtEnd(O, sect)) {
39 printf("'%s': @0x%08" PRIx64 " +%" PRIu64 "\n", LLVMGetSectionName(sect),
40 LLVMGetSectionAddress(sect), LLVMGetSectionSize(sect));
42 LLVMMoveToNextSection(sect);
45 LLVMDisposeSectionIterator(sect);
55 LLVMSectionIteratorRef sect; local
70 sect = LLVMGetSections(O)
    [all...]
  /frameworks/compile/mclinker/lib/LD/
ELFSegmentFactory.cpp 54 ELFSegment::iterator sect, sectEnd = (*segment)->end(); local
55 for (sect = (*segment)->begin(); sect != sectEnd; ++sect) {
56 if (*sect == pSection)
70 ELFSegment::const_iterator sect, sectEnd = (*segment)->end(); local
71 for (sect = (*segment)->begin(); sect != sectEnd; ++sect) {
72 if (*sect == pSection
    [all...]
GarbageCollection.cpp 200 LDContext::sect_iterator sect, sectEnd = (*obj)->context()->sectEnd(); local
201 for (sect = (*obj)->context()->sectBegin(); sect != sectEnd; ++sect) {
202 LDSection* section = *sect;
242 const LDSection* sect = local
244 if (!mayProcessGC(*sect))
247 pEntry.push_back(sect);
268 const LDSection* sect = local
270 if (!mayProcessGC(*sect))
288 const LDSection* sect = &sym->fragRef()->frag()->getParent()->getSection(); local
309 const LDSection* sect = work_list.front(); local
340 LDContext::sect_iterator sect, sectEnd = (*obj)->context()->sectEnd(); local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
section.h 163 int (*func) (yasm_section *sect, /*@null@*/ void *d));
205 * \param sect section
209 int yasm_section_is_code(yasm_section *sect);
212 * \param sect section
216 unsigned long yasm_section_get_opt_flags(const yasm_section *sect);
219 * \param sect section
223 void yasm_section_set_opt_flags(yasm_section *sect, unsigned long opt_flags);
227 * \param sect section
231 int yasm_section_is_default(const yasm_section *sect);
234 * \param sect sectio
    [all...]
section.c 82 static void yasm_section_destroy(/*@only@*/ yasm_section *sect);
400 yasm_section_is_code(yasm_section *sect)
402 return sect->code;
406 yasm_section_get_opt_flags(const yasm_section *sect)
408 return sect->opt_flags;
412 yasm_section_set_opt_flags(yasm_section *sect, unsigned long opt_flags)
414 sect->opt_flags = opt_flags;
418 yasm_section_is_default(const yasm_section *sect)
420 return sect->def;
424 yasm_section_set_default(yasm_section *sect, int def
510 yasm_section *sect; local
1055 yasm_section *sect; local
1285 yasm_section *sect; local
    [all...]
  /frameworks/compile/mclinker/lib/Core/
Module.cpp 41 iterator sect, sectEnd = end(); local
42 for (sect = begin(); sect != sectEnd; ++sect) {
43 if ((*sect)->name() == pName)
44 return *sect;
51 const_iterator sect, sectEnd = end(); local
52 for (sect = begin(); sect != sectEnd; ++sect) {
    [all...]
  /frameworks/compile/mclinker/lib/Script/
UnaryOp.cpp 74 const LDSection* sect = NULL; local
77 sect = pModule.getSection(llvm::cast<SectOperand>(m_pOperand)->name());
80 sect = llvm::cast<SectDescOperand>(m_pOperand)->outputDesc()->getSection();
86 assert(sect != NULL);
87 res->setValue(sect->addr());
96 const LDSection* sect = NULL; local
99 sect = pModule.getSection(llvm::cast<SectOperand>(m_pOperand)->name());
102 sect = llvm::cast<SectDescOperand>(m_pOperand)->outputDesc()->getSection();
108 assert(sect != NULL);
109 res->setValue(sect->align())
173 const LDSection* sect = NULL; local
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
help2man 304 my $sect = 'DESCRIPTION';
328 $sect = uc $1;
335 $sect = 'COPYRIGHT';
336 $include{$sect} ||= '';
337 $include{$sect} .= ".PP\n" if $include{$sect};
359 $include{$sect} .= $copy;
367 $sect = 'REPORTING BUGS';
373 $sect = 'AUTHOR';
383 $include{$sect} ||= ''
    [all...]
  /external/oprofile/libutil++/
op_spu_bfd.cpp 60 asection const * sect; local
156 for (sect = ibfd.abfd->sections; sect; sect = sect->next) {
157 if (sect->flags & SEC_CODE) {
158 if (filepos_map[sect->name] != 0) {
159 cerr << "Found section \"" << sect->name
165 filepos_map[sect->name] = sect->filepos
    [all...]
op_bfd.cpp 115 asection const * sect; local
160 for (sect = ibfd.abfd->sections; sect; sect = sect->next) {
161 if (sect->flags & SEC_CODE) {
162 if (filepos_map[sect->name] != 0) {
163 cerr << "Found section \"" << sect->name
169 filepos_map[sect->name] = sect->filepos
303 asection const * sect = ibfd.abfd->sections; local
    [all...]
bfd_support.cpp 81 asection * sect; local
84 sect = bfd_get_section_by_name(ibfd, ".gnu_debuglink");
86 if (sect == NULL)
89 bfd_size_type debuglink_size = bfd_section_size(ibfd, sect);
94 if (!bfd_get_section_contents(ibfd, sect,
413 for (asection const * sect = abfd->sections; sect; sect = sect->next) {
414 if (sect->flags & SEC_DEBUGGING
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv-dbgfmt.h 49 yasm_bytecode *yasm_cv__append_bc(yasm_section *sect, yasm_bytecode *bc);
cv-dbgfmt.c 83 yasm_cv__append_bc(yasm_section *sect, yasm_bytecode *bc)
85 yasm_bytecode *precbc = yasm_section_bcs_last(sect);
87 yasm_section_bcs_append(sect, bc);
cv-symline.c 133 yasm_section *sect; /* section line numbers are for */ member in struct:cv8_lineinfo
134 yasm_symrec *sectsym; /* symbol for beginning of sect */
243 static cv8_symhead *cv8_add_symhead(yasm_section *sect, unsigned long type,
248 (yasm_section *sect, const cv_filename *fn);
254 cv8_add_sym_objname(yasm_section *sect, /*@keep@*/ char *objname)
265 yasm_cv__append_bc(sect, bc);
270 cv8_add_sym_compile(yasm_object *object, yasm_section *sect,
295 yasm_cv__append_bc(sect, bc);
300 cv8_add_sym_label(yasm_section *sect, yasm_symrec *sym)
312 yasm_cv__append_bc(sect, bc)
435 yasm_section *sect = yasm_bc_get_section(bc); local
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
IdenticalCodeFolding.h 38 : sect(NULL), reloc_sect(NULL), obj(NULL)
41 : sect(pCode), reloc_sect(pReloc), obj(pInput)
49 LDSection* sect; member in class:mcld::IdenticalCodeFolding::FoldingCandidate
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-aranges.c 56 dwarf2_generate_aranges_section(yasm_section *sect, /*@null@*/ void *d)
63 dsd = yasm_section_get_data(sect, &yasm_dwarf2__section_data_cb);
70 yasm_section_bcs_first(sect))), 0);
72 yasm_expr_int(yasm_calc_bc_dist(yasm_section_bcs_first(sect),
73 yasm_section_bcs_last(sect))), 0);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/listfmts/nasm/
nasm-listfmt.c 46 yasm_section *sect; member in struct:sectreloc
155 yasm_section *sect; local
168 sect = yasm_bc_get_section(bc);
169 if (!last_hist || last_hist->sect != sect) {
174 if (last_hist->sect == sect) {
183 last_hist->sect = sect;
184 last_hist->next_reloc = yasm_section_relocs_first(sect);
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
elf.c 298 entry->sect = NULL;
377 entry->sect = NULL;
516 yasm_section *sect; local
519 (sect = yasm_bc_get_section(precbc)) &&
520 (shead = yasm_section_get_data(sect, &elf_section_data)) &&
541 yasm_section *sect,
550 if (sect) entry->sect = sect;
644 elf_secthead *sect = data local
    [all...]
  /external/chromium_org/third_party/skia/tests/
PathOpsCubicLineIntersectionTest.cpp 153 SkDPoint sect = cubic.ptAtT(cubicT); local
154 double left[3] = { line.isLeft(prev), line.isLeft(sect), line.isLeft(cubic[3]) };
156 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", prev.fX, prev.fY, sect.fX, sect.fY);
157 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", sect.fX, sect.fY, cubic[3].fX, cubic[3].fY);
163 sect.distance(i.pt(0)), cubic[3].distance(prevL));
  /external/skia/tests/
PathOpsCubicLineIntersectionTest.cpp 153 SkDPoint sect = cubic.ptAtT(cubicT); local
154 double left[3] = { line.isLeft(prev), line.isLeft(sect), line.isLeft(cubic[3]) };
156 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", prev.fX, prev.fY, sect.fX, sect.fY);
157 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", sect.fX, sect.fY, cubic[3].fX, cubic[3].fY);
163 sect.distance(i.pt(0)), cubic[3].distance(prevL));
  /external/lldb/source/Symbol/
UnwindTable.cpp 50 SectionSP sect = sl->FindSectionByType (eSectionTypeEHFrame, true); local
51 if (sect.get())
53 m_eh_frame = new DWARFCallFrameInfo(m_object_file, sect, eRegisterKindGCC, true);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/
rdf-objfmt.c 111 long parse_scnum; /* sect numbering in parser */
123 yasm_section *sect; member in struct:rdf_objfmt_output_info
253 /*@dependent@*/ yasm_section *sect; local
255 sect = yasm_bc_get_section(precbc);
256 csectd = yasm_section_get_data(sect, &rdf_section_data_cb);
271 yasm_section_add_reloc(info->sect, (yasm_reloc *)reloc, yasm_xfree);
339 rdf_objfmt_output_section_mem(yasm_section *sect, /*@null@*/ void *d)
346 rsd = yasm_section_get_data(sect, &rdf_section_data_cb);
349 size = yasm_bc_next_offset(yasm_section_bcs_last(sect));
367 info->sect = sect
526 \/*@dependent@*\/ \/*@null@*\/ yasm_section *sect; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/
macho-objfmt.c 286 long parse_scnum; /* sect numbering in parser */
299 yasm_section *sect; member in struct:macho_objfmt_output_info
549 yasm_section_add_reloc(info->sect, (yasm_reloc *)reloc, yasm_xfree);
625 macho_objfmt_output_section(yasm_section *sect, /*@null@ */ void *d)
632 msd = yasm_section_get_data(sect, &macho_section_data_cb);
637 info->sect = sect;
639 yasm_section_bcs_traverse(sect, info->errwarns, info,
646 macho_objfmt_output_relocs(yasm_section *sect, /*@null@*/ void *d)
652 reloc = (macho_reloc *)yasm_section_relocs_first(sect);
704 \/*@dependent@*\/ \/*@null@*\/ yasm_section *sect; local
843 \/*@dependent@*\/ \/*@null@*\/ yasm_section *sect; local
1331 const char *sect; member in struct:__anon20258
    [all...]

Completed in 468 milliseconds

1 2 3 4 5 6 7 8 910