/external/autotest/client/cros/faft/utils/ |
D | saft_flashrom_util.py | 122 for section_base, section_end in ost: 123 if section_base <= base or section_end + 1 < section_base: 127 section_base, section_end)) 128 base = section_end
|
/external/google-breakpad/src/common/linux/ |
D | file_id.cc | 64 const void* section_end = reinterpret_cast<const char*>(section) + length; in ElfClassBuildIDNoteIdentifier() local 66 while (reinterpret_cast<const void *>(note_header) < section_end) { in ElfClassBuildIDNoteIdentifier() 74 if (reinterpret_cast<const void *>(note_header) >= section_end || in ElfClassBuildIDNoteIdentifier()
|
/external/llvm/include/llvm/Object/ |
D | ELFObjectFile.h | 328 section_iterator section_end() const override; 542 return section_end(); in getSymbolSection() 659 return section_end(); in getRelocatedSection() 664 return section_end(); in getRelocatedSection() 824 section_iterator ELFObjectFile<ELFT>::section_end() const { in section_end() function 825 return section_iterator(SectionRef(toDRI(EF.section_end()), this)); in section_end()
|
D | ELF.h | 113 const Elf_Shdr *section_end() const; 115 return makeArrayRef(section_begin(), section_end()); in sections() 400 const typename ELFFile<ELFT>::Elf_Shdr *ELFFile<ELFT>::section_end() const { in section_end() function
|
D | ObjectFile.h | 253 virtual section_iterator section_end() const = 0; 257 return section_iterator_range(section_begin(), section_end()); in sections()
|
D | MachO.h | 259 section_iterator section_end() const override;
|
D | COFF.h | 758 section_iterator section_end() const override;
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 254 section_iterator SI = Obj.section_end(); in loadObjectImpl() 260 if (SI == Obj.section_end()) in loadObjectImpl() 292 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in loadObjectImpl() 424 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in computeTotalAllocSize() 514 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in computeSectionStubBufSize()
|
D | RuntimeDyldMachO.cpp | 74 assert(TargetSI != Obj.section_end() && "Can't find section for symbol"); in processScatteredVANILLA() 164 section_iterator SE = Obj.section_end(); in getSectionByAddress()
|
D | RuntimeDyldELF.cpp | 829 for (section_iterator si = Obj.section_begin(), se = Obj.section_end(); in findOPDEntrySection() 832 if (RelSecI == Obj.section_end()) in findOPDEntrySection() 876 section_iterator TSI = Obj.section_end(); in findOPDEntrySection() 881 assert(TSI != Obj.section_end() && "TSI should refer to a valid section"); in findOPDEntrySection() 1248 if (si == Obj.section_end()) in processRelocationRef() 1872 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end(); in finalizeLoad()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
D | RuntimeDyldMachOI386.h | 167 assert(SAI != Obj.section_end() && "Can't find section for address A"); in processSECTDIFFRelocation() 181 assert(SBI != Obj.section_end() && "Can't find section for address B"); in processSECTDIFFRelocation()
|
D | RuntimeDyldMachOARM.h | 248 assert(SAI != MachO.section_end() && "Can't find section for address A"); in processHALFSECTDIFFRelocation() 262 assert(SBI != MachO.section_end() && "Can't find section for address B"); in processHALFSECTDIFFRelocation()
|
D | RuntimeDyldCOFFX86_64.h | 125 const bool IsExtern = SecI == Obj.section_end(); in processRelocationRef()
|
D | RuntimeDyldCOFFI386.h | 88 if (Section == Obj.section_end()) { in processRelocationRef()
|
D | RuntimeDyldCOFFThumb.h | 85 if (Section == Obj.section_end()) { in processRelocationRef()
|
/external/llvm/tools/llvm-objdump/ |
D | llvm-objdump.cpp | 231 Object.section_end()); in begin() 234 return SectionFilterIterator(Predicate, Object.section_end(), in end() 235 Object.section_end()); in end() 997 if (Sec2 != Obj->section_end()) in DisassembleObject() 1018 if (SecI == Obj->section_end()) in DisassembleObject() 1416 if (Type == SymbolRef::ST_Debug && Section != o->section_end()) { in PrintSymbolTable() 1459 } else if (Section == o->section_end()) { in PrintSymbolTable()
|
/external/llvm/tools/dsymutil/ |
D | MachODebugMapParser.cpp | 440 section_iterator Section = MainBinary.section_end(); in loadMainBinarySymbols() 466 if (Section == MainBinary.section_end() || Section->isText()) in loadMainBinarySymbols()
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFContext.cpp | 737 if (RelocatedSection == Obj.section_end()) in DWARFContextInMemory() 793 object::section_iterator RSec = Obj.section_end(); in DWARFContextInMemory() 839 if (L != nullptr && RSec != Obj.section_end()) { in DWARFContextInMemory()
|
/external/llvm/lib/Object/ |
D | Object.cpp | 95 return (*unwrap(SI) == OB->getBinary()->section_end()) ? 1 : 0; in LLVMIsSectionIteratorAtEnd()
|
D | MachOObjectFile.cpp | 581 return section_end(); in getSymbolSection() 1135 section_iterator MachOObjectFile::section_end() const { in section_end() function in MachOObjectFile 2052 return *section_end(); in getAnyRelocationSection() 2055 return *section_end(); in getAnyRelocationSection()
|
D | COFFObjectFile.cpp | 241 return section_end(); in getSymbolSection() 818 section_iterator COFFObjectFile::section_end() const { in section_end() function in COFFObjectFile
|
/external/llvm/tools/llvm-cxxdump/ |
D | llvm-cxxdump.cpp | 174 if (Sec2 != Obj->section_end()) in dumpCXXData() 193 if (SecI == Obj->section_end()) in dumpCXXData()
|
/external/llvm/tools/llvm-readobj/ |
D | MachODumper.cpp | 550 if (SecI != Obj->section_end()) { in printRelocation() 622 if (SecI != Obj->section_end()) in printSymbol()
|
/external/v8/src/wasm/ |
D | module-decoder.cc | 123 inline const byte* section_end() const { return section_end_; } in section_end() function in v8::internal::wasm::__anonc7c9a5260111::WasmSectionIterator
|
/external/llvm/tools/llvm-nm/ |
D | llvm-nm.cpp | 754 if (SecI != Obj.section_end()) { in getSymbolNMTypeChar()
|