/aosp12/frameworks/compile/mclinker/lib/Core/ |
H A D | Module.cpp | 39 iterator sect, sectEnd = end(); in getSection() local 40 for (sect = begin(); sect != sectEnd; ++sect) { in getSection() 41 if ((*sect)->name() == pName) in getSection() 42 return *sect; in getSection() 48 const_iterator sect, sectEnd = end(); in getSection() local 49 for (sect = begin(); sect != sectEnd; ++sect) { in getSection() 50 if ((*sect)->name() == pName) in getSection() 51 return *sect; in getSection()
|
/aosp12/frameworks/compile/mclinker/lib/Script/ |
H A D | UnaryOp.cpp | 73 const LDSection* sect = NULL; in eval() local 79 sect = in eval() 86 assert(sect != NULL); in eval() 87 res->setValue(sect->addr()); in eval() 95 const LDSection* sect = NULL; in eval() local 101 sect = in eval() 108 assert(sect != NULL); in eval() 109 res->setValue(sect->align()); in eval() 172 sect = in eval() 179 assert(sect != NULL); in eval() [all …]
|
H A D | BinaryOp.cpp | 228 SectOperand* sect = llvm::cast<SectOperand>(m_pOperand[0]); in eval() local 231 if (sect->name().compare("text-segment") == 0) in eval() 233 else if (sect->name().compare("data-segment") == 0) in eval() 235 else if (sect->name().compare("bss-segment") == 0) in eval() 238 addr = addressMap.find(sect->name()); in eval()
|
/aosp12/frameworks/compile/mclinker/lib/LD/ |
H A D | IdenticalCodeFolding.cpp | 81 LDSection* sect = (*kept).first; in foldIdenticalCode() local 85 sect->setKind(LDFileFormat::Folded); in foldIdenticalCode() 107 LDSection* sect = &(frag_ref->frag()->getParent()->getSection()); in foldIdenticalCode() local 108 if (sect->kind() == LDFileFormat::Folded) { in foldIdenticalCode() 109 size_t kept_index = m_KeptSections[sect].second; in foldIdenticalCode() 126 for (sect = (*obj)->context()->sectBegin(); sect != sectEnd; ++sect) { in findCandidates() 127 switch ((*sect)->kind()) { in findCandidates() 134 LDSection* target = (*sect)->getLink(); in findCandidates() 136 candidate_map[target] = *sect; in findCandidates() 217 assert(sect != NULL && sect->hasSectionData()); in initConstantContent() [all …]
|
H A D | GarbageCollection.cpp | 189 for (sect = (*obj)->context()->sectBegin(); sect != sectEnd; ++sect) { in getEntrySections() 190 LDSection* section = *sect; in getEntrySections() 220 const LDSection* sect = in getEntrySections() local 222 if (!mayProcessGC(*sect)) in getEntrySections() 224 pEntry.push_back(sect); in getEntrySections() 258 const LDSection* sect = in getEntrySections() local 260 if (!mayProcessGC(*sect)) in getEntrySections() 263 pEntry.push_back(sect); in getEntrySections() 281 if (!mayProcessGC(*sect)) in getEntrySections() 283 pEntry.push_back(sect); in getEntrySections() [all …]
|
H A D | ELFSegmentFactory.cpp | 52 ELFSegment::iterator sect, sectEnd = (*segment)->end(); in find() local 53 for (sect = (*segment)->begin(); sect != sectEnd; ++sect) { in find() 54 if (*sect == pSection) in find() 68 ELFSegment::const_iterator sect, sectEnd = (*segment)->end(); in find() local 69 for (sect = (*segment)->begin(); sect != sectEnd; ++sect) { in find() 70 if (*sect == pSection) in find()
|
H A D | BranchIslandFactory.cpp | 41 for (Module::iterator sect = pModule.begin(), sectEnd = pModule.end(); in group() local 42 sect != sectEnd; ++sect) { in group() 43 if (((*sect)->kind() == LDFileFormat::TEXT) && (*sect)->hasSectionData()) { in group() 44 SectionData& sd = *((*sect)->getSectionData()); in group()
|
H A D | ELFObjectWriter.cpp | 150 ELFSegment::iterator sect, sectEnd = (*seg)->end(); in writeObject() local 151 for (sect = (*seg)->begin(); sect != sectEnd; ++sect) in writeObject() 152 writeSection(pModule, pOutput, *sect); in writeObject() 157 Module::iterator sect, sectEnd = pModule.end(); in writeObject() local 158 for (sect = pModule.begin(); sect != sectEnd; ++sect) in writeObject() 159 writeSection(pModule, pOutput, *sect); in writeObject()
|
/aosp12/frameworks/compile/mclinker/lib/Target/ARM/ |
H A D | ARMException.cpp | 69 LDSection* sect = *it; in create() local 70 if (sect->type() == llvm::ELF::SHT_ARM_EXIDX) { in create() 71 ARMExSectionTuple* exTuple = exMap->getOrCreateByExSection(*sect); in create() 72 exTuple->setExIdxSection(sect); in create() 73 exTuple->setTextSection(sect->getLink()); in create() 74 if (sect->getLink() == NULL) { in create() 75 fatal(diag::eh_missing_text_section) << sect->name() << pInput.name(); in create()
|
/aosp12/frameworks/compile/mclinker/lib/Object/ |
H A D | ObjectLinker.cpp | 342 for (sect = (*obj)->context()->sectBegin(); sect != sectEnd; ++sect) { in mergeSections() 343 switch ((*sect)->kind()) { in mergeSections() 354 if (!(*sect)->hasRelocData()) in mergeSections() 358 (*sect)->getLink()->kind() == LDFileFormat::Folded) in mergeSections() 359 (*sect)->setKind(LDFileFormat::Ignore); in mergeSections() 369 if (!(*sect)->hasEhFrame()) in mergeSections() 385 (*sect)->setKind(LDFileFormat::Debug); in mergeSections() 389 if (!(*sect)->hasSectionData()) in mergeSections() 647 Module::iterator sect, sEnd = m_pModule->end(); in prelayout() local 648 for (sect = m_pModule->begin(); sect != sEnd; ++sect) { in prelayout() [all …]
|
H A D | SectionMap.cpp | 313 StringList::const_iterator sect, sectEnd = pInput.spec().sections().end(); in matched() local 314 for (sect = pInput.spec().sections().begin(); sect != sectEnd; ++sect) { in matched() 315 if (matched(llvm::cast<WildcardPattern>(**sect), pInputSection)) { in matched()
|
/aosp12/frameworks/compile/mclinker/lib/Target/ |
H A D | GNULDBackend.cpp | 703 for (sect = pModule.begin(); sect != sectEnd; ++sect) { in sizeShstrtab() 1805 load_seg->append(sect); in createProgramHdrs() 1831 ++sect) { in createProgramHdrs() 1869 for (sect = sectBegin; sect != sectEnd; ++sect) { in createProgramHdrs() 1917 for (sect = (*seg)->rbegin(); sect != sectREnd; ++sect) { in setupProgramHdrs() 1922 (*seg)->setFilesz((*sect)->offset() + (*sect)->size() - (*seg)->offset()); in setupProgramHdrs() 1953 for (sect = (*seg)->begin(); sect != sectEnd; ++sect) { in setupProgramHdrs() 1955 --sect; in setupProgramHdrs() 1963 --sect; in setupProgramHdrs() 1964 (*seg)->setFilesz((*sect)->offset() + (*sect)->size() - in setupProgramHdrs() [all …]
|
/aosp12/frameworks/compile/mclinker/include/mcld/LD/ |
H A D | IdenticalCodeFolding.h | 39 FoldingCandidate() : sect(NULL), reloc_sect(NULL), obj(NULL) {} in FoldingCandidate() 41 : sect(pCode), reloc_sect(pReloc), obj(pInput) {} in FoldingCandidate() 50 LDSection* sect; variable
|
/aosp12/bionic/libc/dns/nameser/ |
H A D | ns_parse.c | 47 static void setsection(ns_msg *msg, ns_sect sect); 268 setsection(ns_msg *msg, ns_sect sect) { in setsection() argument 269 msg->_sect = sect; in setsection() 270 if (sect == ns_s_max) { in setsection() 275 msg->_msg_ptr = msg->_sections[(int)sect]; in setsection()
|
/aosp12/frameworks/compile/mclinker/lib/Target/AArch64/ |
H A D | AArch64LDBackend.cpp | 317 for (Module::iterator sect = pModule.begin(), sectEnd = pModule.end(); in scanErrata() local 318 sect != sectEnd; ++sect) { in scanErrata() 319 if (((*sect)->kind() == LDFileFormat::TEXT) && (*sect)->hasSectionData()) { in scanErrata() 320 SectionData* sd = (*sect)->getSectionData(); in scanErrata()
|
/aosp12/bionic/libc/kernel/uapi/linux/ |
H A D | fd.h | 24 unsigned int size, sect, head, track, stretch; member
|
/aosp12/frameworks/compile/mclinker/lib/Target/Mips/ |
H A D | MipsLDBackend.cpp | 1154 LDSection* sect = *it; in saveTPOffset() local 1155 if (sect->flag() & llvm::ELF::SHF_TLS) { in saveTPOffset() 1156 m_TpOffsetMap[&pInput] = sect->addr() + 0x7000; in saveTPOffset() 1157 m_DtpOffsetMap[&pInput] = sect->addr() + 0x8000; in saveTPOffset()
|
/aosp12/packages/apps/TV/libs/m2/ |
H A D | javac-shaded-9-dev-r4023-3.jar | org/openjdk/tools/sjavac/server/log/LoggingOutputStream.class
LoggingOutputStream.java
package ... |
/aosp12/packages/apps/TV/libs/ |
H A D | google-java-format-1.7-all-deps.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/aosp12/packages/inputmethods/LatinIME/dictionaries/ |
H A D | pt_BR_wordlist.combined.gz | 1dictionary=main:pt_br,locale=pt_BR,description=Português (Brasil),date ... |
H A D | pt_PT_wordlist.combined.gz | 1dictionary=main:pt_pt,locale=pt_PT,description=Português (Portugal),date ... |
H A D | en_US_wordlist.combined.gz | 1dictionary=main:en_us,locale=en_US,description=English (US),date ... |
H A D | en_GB_wordlist.combined.gz | 1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ... |
H A D | en_wordlist.combined.gz | 1dictionary=main:en,locale=en,description=English,date=1414726273, ... |
H A D | ro_wordlist.combined.gz | 1dictionary=main:ro,locale=ro,description=Română,date=1412325511, ... |