| /src/external/mit/xorg/share/examples/ |
| xorg.conf | 10 Section "Device" 36 Section "ServerFlags"
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/MCTargetDesc/ |
| NVPTXTargetStreamer.cpp | 43 const MCSection *Section) { 46 if (!Section || Section->getKind().isText() || 47 Section->getKind().isWriteable()) 49 return Section == FI->getDwarfAbbrevSection() || 50 Section == FI->getDwarfInfoSection() || 51 Section == FI->getDwarfMacinfoSection() || 52 Section == FI->getDwarfFrameSection() || 53 Section == FI->getDwarfAddrSection() || 54 Section == FI->getDwarfRangesSection() | [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/ |
| DIASectionContrib.cpp | 19 : Session(PDBSession), Section(DiaSection) {} 23 if (FAILED(Section->get_compiland(&Symbol))) 32 PrivateGetDIAValue(IDiaSectionContrib *Section, 35 if (S_OK == (Section->*Method)(&Value)) 42 return PrivateGetDIAValue(Section, &IDiaSectionContrib::get_addressSection); 46 return PrivateGetDIAValue(Section, &IDiaSectionContrib::get_addressOffset); 50 return PrivateGetDIAValue(Section, &IDiaSectionContrib::get_virtualAddress); 54 return PrivateGetDIAValue(Section, 59 return PrivateGetDIAValue(Section, &IDiaSectionContrib::get_length); 63 return PrivateGetDIAValue(Section, &IDiaSectionContrib::get_notPaged) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/ |
| DebugSubsectionVisitor.cpp | 54 DebugCrossModuleExportsSubsectionRef Section; 55 if (auto EC = Section.initialize(Reader)) 57 return V.visitCrossModuleExports(Section, State); 60 DebugCrossModuleImportsSubsectionRef Section; 61 if (auto EC = Section.initialize(Reader)) 63 return V.visitCrossModuleImports(Section, State); 66 DebugSymbolsSubsectionRef Section; 67 if (auto EC = Section.initialize(Reader)) 69 return V.visitSymbols(Section, State); 72 DebugStringTableSubsectionRef Section; [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/ |
| Object.h | 22 struct Section { 23 // For now, each section is only an opaque binary blob with no distinction 33 std::vector<Section> Sections; 35 void addSectionWithOwnedContents(Section NewSection, 37 void removeSections(function_ref<bool(const Section &)> ToRemove);
|
| Object.cpp | 22 Section NewSection, std::unique_ptr<MemoryBuffer> &&Content) { 27 void Object::removeSections(function_ref<bool(const Section &)> ToRemove) { 28 // TODO: remove reloc sections for the removed section, handle symbols, etc.
|
| /src/external/apache2/llvm/dist/llvm/lib/MC/ |
| ConstantPools.cpp | 66 ConstantPool *AssemblerConstantPools::getConstantPool(MCSection *Section) { 67 ConstantPoolMapTy::iterator CP = ConstantPools.find(Section); 75 AssemblerConstantPools::getOrCreateConstantPool(MCSection *Section) { 76 return ConstantPools[Section]; 79 static void emitConstantPool(MCStreamer &Streamer, MCSection *Section, 82 Streamer.SwitchSection(Section); 90 MCSection *Section = CPI.first; 93 emitConstantPool(Streamer, Section, CP); 98 MCSection *Section = Streamer.getCurrentSectionOnly(); 99 if (ConstantPool *CP = getConstantPool(Section)) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/ |
| PDBSymbolData.cpp | 27 if (auto Section = RawSymbol->getAddressSection()) 29 Section, RawSymbol->getAddressOffset(), Len); 49 while (auto Section = SecContribs->getNext()) { 50 if (Section->getAddressSection() == DataSection && 51 Section->getAddressOffset() <= DataOffset && 52 (Section->getAddressOffset() + Section->getLength()) > DataOffset) 53 return Section->getCompilandId();
|
| /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
| WasmYAML.cpp | 25 Section::~Section() = default; 45 static void commonSectionMapping(IO &IO, WasmYAML::Section &Section) { 46 IO.mapRequired("Type", Section.Type); 47 IO.mapOptional("Relocations", Section.Relocations); 50 static void sectionMapping(IO &IO, WasmYAML::DylinkSection &Section) { 51 commonSectionMapping(IO, Section); 52 IO.mapRequired("Name", Section.Name); 53 IO.mapRequired("MemorySize", Section.MemorySize) [all...] |
| WasmEmitter.cpp | 33 void writeRelocSection(raw_ostream &OS, WasmYAML::Section &Sec, 38 void writeSectionContent(raw_ostream &OS, WasmYAML::CustomSection &Section); 39 void writeSectionContent(raw_ostream &OS, WasmYAML::TypeSection &Section); 40 void writeSectionContent(raw_ostream &OS, WasmYAML::ImportSection &Section); 41 void writeSectionContent(raw_ostream &OS, WasmYAML::FunctionSection &Section); 42 void writeSectionContent(raw_ostream &OS, WasmYAML::TableSection &Section); 43 void writeSectionContent(raw_ostream &OS, WasmYAML::MemorySection &Section); 44 void writeSectionContent(raw_ostream &OS, WasmYAML::EventSection &Section); 45 void writeSectionContent(raw_ostream &OS, WasmYAML::GlobalSection &Section); 46 void writeSectionContent(raw_ostream &OS, WasmYAML::ExportSection &Section); [all...] |
| ELFEmitter.cpp | 134 // Used to keep track of section and symbol names, so that in the YAML file 157 assert(false && "Expected section not found in index"); 180 /// The future ".strtab" section. 183 /// The future ".shstrtab" section. 186 /// The future ".dynstr" section. 211 StringRef SecName, ELFYAML::Section *YAMLSec); 216 ELFYAML::Section *YAMLSec); 220 ELFYAML::Section *YAMLSec); 223 ELFYAML::Section *YAMLSec); 234 const ELFYAML::NoBitsSection &Section, [all...] |
| ELFYAML.cpp | 1210 IO.mapOptional("Section", Symbol.Section); 1228 if (Symbol.Index && Symbol.Section) 1229 return "Index and Section cannot both be specified for Symbol"; 1233 static void commonSectionMapping(IO &IO, ELFYAML::Section &Section) { 1234 IO.mapOptional("Name", Section.Name, StringRef()); 1235 IO.mapRequired("Type", Section.Type); 1236 IO.mapOptional("Flags", Section.Flags); 1237 IO.mapOptional("Address", Section.Address) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/MC/ |
| MCAsmInfoDarwin.h | 25 bool isSectionAtomizableBySymbols(const MCSection &Section) const override;
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
| NativeLineNumber.cpp | 16 uint32_t ColumnNumber, uint32_t Section, 20 Section(Section), Offset(Offset), Length(Length), SrcFileId(SrcFileId), 33 uint32_t NativeLineNumber::getAddressSection() const { return Section; } 38 return Session.getRVAFromSectOffset(Section, Offset); 42 return Session.getVAFromSectOffset(Section, Offset);
|
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
| RuntimeDyldELFMips.cpp | 16 const SectionEntry &Section = Sections[RE.SectionID]; 18 resolveMIPSO32Relocation(Section, RE.Offset, Value, RE.RelType, RE.Addend); 20 resolveMIPSN32Relocation(Section, RE.Offset, Value, RE.RelType, RE.Addend, 23 resolveMIPSN64Relocation(Section, RE.Offset, Value, RE.RelType, RE.Addend, 33 const SectionEntry &Section = Sections[RE.SectionID]; 34 Value = evaluateMIPS64Relocation(Section, RE.Offset, Value, RE.RelType, 44 const SectionEntry &Section = Sections[RE.SectionID]; 45 applyMIPSRelocation(Section.getAddressWithOffset(RE.Offset), Value, 53 RuntimeDyldELFMips::evaluateMIPS32Relocation(const SectionEntry &Section, 58 << format("%llx", Section.getAddressWithOffset(Offset) [all...] |
| RuntimeDyldELFMips.h | 31 void resolveMIPSO32Relocation(const SectionEntry &Section, uint64_t Offset, 33 void resolveMIPSN32Relocation(const SectionEntry &Section, uint64_t Offset, 36 void resolveMIPSN64Relocation(const SectionEntry &Section, uint64_t Offset, 52 int64_t evaluateMIPS32Relocation(const SectionEntry &Section, uint64_t Offset, 54 int64_t evaluateMIPS64Relocation(const SectionEntry &Section,
|
| RuntimeDyldCOFFX86_64.h | 34 // Fake an __ImageBase pointer by returning the section with the lowest adress 38 for (const SectionEntry &Section : Sections) 42 // section isn't loaded, the load address will be 0, and it should not 44 if (Section.getLoadAddress() != 0) 45 ImageBase = std::min(ImageBase, Section.getLoadAddress()); 70 // SectionEntry::Address is the address at which the section has been loaded 72 // the address that the section will have in the target process. 73 // SectionEntry::ObjAddress is the address of the bits for this section in the 76 // Relocations will be applied as if the section were loaded at 83 // current object Value will be the LoadAddress of the section in whic [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/ |
| WasmYAML.h | 182 struct Section { 183 explicit Section(SectionType SecType) : Type(SecType) {} 184 virtual ~Section(); 190 struct CustomSection : Section { 192 : Section(wasm::WASM_SEC_CUSTOM), Name(Name) {} 194 static bool classof(const Section *S) { 205 static bool classof(const Section *S) { 220 static bool classof(const Section *S) { 233 static bool classof(const Section *S) { 248 static bool classof(const Section *S) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/ |
| DWARFDataExtractor.h | 19 /// A DataExtractor (typically for an in-memory copy of an object-file section) 20 /// plus a relocation map for that section, if there is one. 23 const DWARFSection *Section = nullptr; 26 /// Constructor for the normal case of extracting data from a DWARF section. 28 DWARFDataExtractor(const DWARFObject &Obj, const DWARFSection &Section, 30 : DataExtractor(Section.Data, IsLittleEndian, AddressSize), Obj(&Obj), 31 Section(&Section) {} 46 Obj(Other.Obj), Section(Other.Section) {} [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/ |
| Object.cpp | 56 for (const Section &Sec : Sections) { 68 void Object::addSections(ArrayRef<Section> NewSections) { 69 for (Section S : NewSections) { 77 SectionMap = DenseMap<ssize_t, Section *>(Sections.size()); 79 for (Section &S : Sections) { 85 const Section *Object::findSection(ssize_t UniqueId) const { 89 void Object::removeSections(function_ref<bool(const Section &)> ToRemove) { 91 auto RemoveAssociated = [&AssociatedSections](const Section &Sec) { 96 llvm::erase_if(Sections, [ToRemove, &RemovedSections](const Section &Sec) { 107 // section, [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/TextAPI/ |
| TextStub.cpp | 52 Each export section is defined as following: 86 Each export section is defined as following: 98 Each undefineds section is defined as following: 127 Each export section is defined as following: 141 Each undefineds section is defined as following: 179 Each export and reexport section is defined as following: 193 Each undefineds section is defined as following: 287 static void mapping(IO &IO, ExportSection &Section) { 292 IO.mapRequired("archs", Section.Architectures); 294 IO.mapOptional("allowed-clients", Section.AllowableClients) [all...] |
| /src/external/lgpl3/mpfr/dist/doc/ |
| check-typography | 28 (Texinfo manual: Section 12.3.2 "Not Ending a Sentence"). 30 (Texinfo manual: Section 12.3.3 "Ending a Sentence").
|
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| RuntimeDyldELF.cpp | 259 void RuntimeDyldELF::resolveX86_64Relocation(const SectionEntry &Section, 273 *Section.getAddressWithOffset(Offset) = TruncatedAddr; 275 << format("%p\n", Section.getAddressWithOffset(Offset))); 282 support::ulittle16_t::ref(Section.getAddressWithOffset(Offset)) = 285 << format("%p\n", Section.getAddressWithOffset(Offset))); 289 support::ulittle64_t::ref(Section.getAddressWithOffset(Offset)) = 292 << format("%p\n", Section.getAddressWithOffset(Offset))); 302 support::ulittle32_t::ref(Section.getAddressWithOffset(Offset)) = 305 << format("%p\n", Section.getAddressWithOffset(Offset))); 309 uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Basic/ |
| ProfileList.cpp | 91 StringRef Section = getSectionName(Kind); 92 if (SCL->inSection(Section, "!fun", FunctionName)) 94 if (SCL->inSection(Section, "fun", FunctionName)) 108 StringRef Section = getSectionName(Kind); 109 if (SCL->inSection(Section, "!src", FileName)) 111 if (SCL->inSection(Section, "src", FileName))
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/ |
| SectionSizes.cpp | 1 //===-- SectionSizes.cpp - Debug section sizes ----------------------------===// 19 // The minimum column width should be the size of "SECTION". 40 const StringRef SectionNameTitle = "SECTION"; 85 for (const SectionRef &Section : Obj.sections()) { 87 if (Expected<StringRef> NameOrErr = Section.getName()) 93 LLVM_DEBUG(dbgs() << SectionName.str() << ": " << Section.getSize() 96 if (!Section.isDebugSection(SectionName)) 99 Sizes.TotalDebugSectionsSize += Section.getSize(); 100 Sizes.DebugSectionSizes[std::string(SectionName)] += Section.getSize(); 110 // Get the section sizes [all...] |