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

1 2 3 4

  /frameworks/compile/mclinker/lib/Script/
UnaryOp.cpp 73 const LDSection* sect = NULL; local
76 sect = pModule.getSection(llvm::cast<SectOperand>(m_pOperand)->name());
79 sect =
86 assert(sect != NULL);
87 res->setValue(sect->addr());
95 const LDSection* sect = NULL; local
98 sect = pModule.getSection(llvm::cast<SectOperand>(m_pOperand)->name());
101 sect =
108 assert(sect != NULL);
109 res->setValue(sect->align())
166 const LDSection* sect = NULL; local
    [all...]
BinaryOp.cpp 228 SectOperand* sect = llvm::cast<SectOperand>(m_pOperand[0]); local
231 if (sect->name().compare("text-segment") == 0)
233 else if (sect->name().compare("data-segment") == 0)
235 else if (sect->name().compare("bss-segment") == 0)
238 addr = addressMap.find(sect->name());
  /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 52 ELFSegment::iterator sect, sectEnd = (*segment)->end(); local
53 for (sect = (*segment)->begin(); sect != sectEnd; ++sect) {
54 if (*sect == pSection)
68 ELFSegment::const_iterator sect, sectEnd = (*segment)->end(); local
69 for (sect = (*segment)->begin(); sect != sectEnd; ++sect) {
70 if (*sect == pSection
    [all...]
GarbageCollection.cpp 188 LDContext::sect_iterator sect, sectEnd = (*obj)->context()->sectEnd(); local
189 for (sect = (*obj)->context()->sectBegin(); sect != sectEnd; ++sect) {
190 LDSection* section = *sect;
220 const LDSection* sect = local
222 if (!mayProcessGC(*sect))
224 pEntry.push_back(sect);
258 const LDSection* sect = local
260 if (!mayProcessGC(*sect))
280 const LDSection* sect = &sym->fragRef()->frag()->getParent()->getSection(); local
300 const LDSection* sect = work_list.front(); local
330 LDContext::sect_iterator sect, sectEnd = (*obj)->context()->sectEnd(); local
    [all...]
IdenticalCodeFolding.cpp 81 LDSection* sect = (*kept).first; local
85 sect->setKind(LDFileFormat::Folded);
92 debug(diag::debug_icf_folded_section) << sect->name() << obj->name()
107 LDSection* sect = &(frag_ref->frag()->getParent()->getSection()); local
108 if (sect->kind() == LDFileFormat::Folded) {
109 size_t kept_index = m_KeptSections[sect].second;
125 LDContext::sect_iterator sect, sectEnd = (*obj)->context()->sectEnd(); local
126 for (sect = (*obj)->context()->sectBegin(); sect != sectEnd; ++sect) {
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
IdenticalCodeFolding.h 39 FoldingCandidate() : sect(NULL), reloc_sect(NULL), obj(NULL) {}
41 : sect(pCode), reloc_sect(pReloc), obj(pInput) {}
50 LDSection* sect; member in class:mcld::IdenticalCodeFolding::FoldingCandidate
  /frameworks/compile/mclinker/lib/Core/
Module.cpp 39 iterator sect, sectEnd = end(); local
40 for (sect = begin(); sect != sectEnd; ++sect) {
41 if ((*sect)->name() == pName)
42 return *sect;
48 const_iterator sect, sectEnd = end(); local
49 for (sect = begin(); sect != sectEnd; ++sect) {
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMException.cpp 69 LDSection* sect = *it; local
70 if (sect->type() == llvm::ELF::SHT_ARM_EXIDX) {
71 ARMExSectionTuple* exTuple = exMap->getOrCreateByExSection(*sect);
72 exTuple->setExIdxSection(sect);
73 exTuple->setTextSection(sect->getLink());
74 if (sect->getLink() == NULL) {
75 fatal(diag::eh_missing_text_section) << sect->name() << pInput.name();
  /device/google/contexthub/firmware/os/cpu/cortexm4/
appSupport.c 143 const struct SectInfo *sect = &app->sect; local
144 const uint8_t *relocsStart = (const uint8_t*)APP_FLASH_RELOC(app, sect->rel_start);
145 const uint8_t *relocsEnd = (const uint8_t*)APP_FLASH_RELOC(app, sect->rel_end);
146 uint8_t *mem = heapAlloc(sect->bss_end);
152 platInfo->data = mem + sect->data_start;
155 memset(mem + sect->bss_start, 0, sect->bss_end - sect->bss_start);
158 memcpy(mem + sect->data_start, (uint8_t*)APP_FLASH_RELOC(app, sect->data_data), sect->got_end - sect->data_start)
    [all...]
  /external/skia/tests/
PathOpsCubicLineIntersectionTest.cpp 163 SkDPoint sect = cubic.ptAtT(cubicT); local
164 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", prev.fX, prev.fY, sect.fX, sect.fY);
165 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", sect.fX, sect.fY, cubic[3].fX, cubic[3].fY);
171 sect.distance(i.pt(0)), cubic[3].distance(prevL));
  /external/skqp/tests/
PathOpsCubicLineIntersectionTest.cpp 163 SkDPoint sect = cubic.ptAtT(cubicT); local
164 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", prev.fX, prev.fY, sect.fX, sect.fY);
165 SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", sect.fX, sect.fY, cubic[3].fX, cubic[3].fY);
171 sect.distance(i.pt(0)), cubic[3].distance(prevL));
  /external/syslinux/com32/chain/
options.h 63 bool sect; member in struct:options
  /external/syslinux/libinstaller/
syslxmod.c 40 sector_t sect, lba; local
49 sect = *sectp++;
54 if (sect == lba + len && xbytes < 65536 &&
67 lba = sect;
  /external/valgrind/coregrind/
m_addrinfo.c 91 VgSectKind sect; local
207 sect = VG_(DebugInfo_sect_kind)( &name, a);
208 if (sect != Vg_SectUnknown) {
211 ai->Addr.SectKind.kind = sect;
  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 313 StringList::const_iterator sect, sectEnd = pInput.spec().sections().end(); local
314 for (sect = pInput.spec().sections().begin(); sect != sectEnd; ++sect) {
315 if (matched(llvm::cast<WildcardPattern>(**sect), pInputSection)) {
  /toolchain/binutils/binutils-2.27/bfd/
aout-adobe.c 77 asection *sect; local
133 sect = bfd_make_section_with_flags (abfd, section_name, flags);
136 while (!sect)
142 sect = bfd_make_section_with_flags (abfd, try_again, flags);
146 if (sect->name == try_again)
148 amt = strlen (sect->name);
152 strcpy (newname, sect->name);
153 sect->name = newname;
157 sect->size = ((ext->e_size[0] << 8)
160 sect->vma = H_GET_32 (abfd, ext->e_virtbase)
273 asection *sect; local
373 sec_ptr sect; local
    [all...]
section.c 1391 asection *sect; local
1427 asection *sect; local
    [all...]
  /toolchain/binutils/binutils-2.27/gold/testsuite/
plugin_test.c 47 char* sect; member in struct:sym_info
329 if (strncmp(info.sect, "UND", 3) == 0)
331 else if (strncmp(info.sect, "COM", 3) == 0)
648 info->sect = p;
  /toolchain/binutils/binutils-2.27/opcodes/
arc-ext.c 427 asection *sect; local
434 for (sect = text_bfd->sections; sect != NULL; sect = sect->next)
435 if (!strncmp (sect->name,
438 || !strcmp (sect->name,".arcextmap"))
440 bfd_size_type count = bfd_get_section_size (sect);
445 if (bfd_get_section_contents (text_bfd, sect, buffer, 0, count))
  /external/skia/src/effects/
SkArithmeticImageFilter.cpp 135 SkIRect sect; local
136 if (!sect.intersect(dstR, srcR)) {
139 *dst = SkPixmap(dst->info().makeWH(sect.width(), sect.height()),
140 dst->addr(sect.fLeft, sect.fTop),
142 *src = SkPixmap(src->info().makeWH(sect.width(), sect.height()),
  /external/skqp/src/core/
SkMaskFilter.cpp 387 template <typename T> static inline T sect(const T& a, const T& b) { function
539 case SkCoverageMode::kIntersect: return sect(src, dst);
  /external/skqp/src/effects/
SkArithmeticImageFilter.cpp 135 SkIRect sect; local
136 if (!sect.intersect(dstR, srcR)) {
139 *dst = SkPixmap(dst->info().makeWH(sect.width(), sect.height()),
140 dst->addr(sect.fLeft, sect.fTop),
142 *src = SkPixmap(src->info().makeWH(sect.width(), sect.height()),
  /device/google/contexthub/lib/include/nanohub/
nanohub.h 122 #define FLASH_RELOC_OFFSET offsetof(struct AppHdr, sect) // used by appSupport.c at run time
123 #define BINARY_RELOC_OFFSET offsetof(struct BinHdr, sect) // used by postprocess at build time
133 struct SectInfo sect; member in struct:BinHdr
140 struct SectInfo sect; member in struct:AppHdr
203 struct SectInfo sect; member in struct:AppInfo
  /device/google/contexthub/util/nanoapp_postprocess/
postprocess.c 242 struct SectInfo *sect; local
260 app.sect = bin->sect;
262 sect = &app.sect;
267 size_t gotSz = sect->got_end - sect->data_start;
268 size_t bssSz = sect->bss_end - sect->bss_start;
364 flashDataOffset = app->bin->sect.data_data - FLASH_BASE
408 struct SectInfo *sect; local
    [all...]

Completed in 921 milliseconds

1 2 3 4