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

1 2 3

  /external/google-breakpad/src/common/linux/
file_id.cc 64 const void* section_end = reinterpret_cast<const char*>(section) + length; local
66 while (reinterpret_cast<const void *>(note_header) < section_end) {
74 if (reinterpret_cast<const void *>(note_header) >= section_end ||
  /external/libchrome/base/debug/
elf_reader_linux.cc 41 const void* section_end = segment.data() + segment.size_bytes(); local
43 while (note_header < section_end) {
52 if (note_header >= section_end || note_header->n_descsz != kSHA1Length)
  /external/autotest/client/cros/faft/utils/
saft_flashrom_util.py 123 for section_base, section_end in ost:
124 if section_base <= base or section_end + 1 < section_base:
128 section_base, section_end))
129 base = section_end
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOI386.h 167 assert(SAI != Obj.section_end() && "Can't find section for address A");
181 assert(SBI != Obj.section_end() && "Can't find section for address B");
RuntimeDyldCOFFX86_64.h 125 const bool IsExtern = SecI == Obj.section_end();
RuntimeDyldMachOARM.h 248 assert(SAI != MachO.section_end() && "Can't find section for address A");
262 assert(SBI != MachO.section_end() && "Can't find section for address B");
RuntimeDyldCOFFI386.h 88 if (Section == Obj.section_end()) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOI386.h 167 assert(SAI != Obj.section_end() && "Can't find section for address A");
181 assert(SBI != Obj.section_end() && "Can't find section for address B");
RuntimeDyldMachOARM.h 376 assert(SAI != MachO.section_end() && "Can't find section for address A");
390 assert(SBI != MachO.section_end() && "Can't find section for address B");
RuntimeDyldCOFFI386.h 88 if (Section == Obj.section_end()) {
RuntimeDyldCOFFX86_64.h 193 const bool IsExtern = SecI == Obj.section_end();
  /external/llvm/include/llvm/Object/
ELFObjectFile.h 328 section_iterator section_end() const override;
542 return section_end();
659 return section_end();
664 return section_end();
824 section_iterator ELFObjectFile<ELFT>::section_end() const { function in class:llvm::object::ELFObjectFile
825 return section_iterator(SectionRef(toDRI(EF.section_end()), this));
ELF.h 113 const Elf_Shdr *section_end() const;
115 return makeArrayRef(section_begin(), section_end());
400 const typename ELFFile<ELFT>::Elf_Shdr *ELFFile<ELFT>::section_end() const { function in class:llvm::object::ELFFile
ObjectFile.h 253 virtual section_iterator section_end() const = 0;
257 return section_iterator_range(section_begin(), section_end());
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 254 section_iterator SI = Obj.section_end();
260 if (SI == Obj.section_end())
292 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
424 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
514 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
    [all...]
RuntimeDyldMachO.cpp 74 assert(TargetSI != Obj.section_end() && "Can't find section for symbol");
164 section_iterator SE = Obj.section_end();
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 305 section_iterator SI = Obj.section_end();
311 if (SI == Obj.section_end())
343 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
475 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
569 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
591 for (section_iterator SI = Obj.section_begin(), SE = Obj.section_end();
    [all...]
RuntimeDyldMachO.cpp 76 assert(TargetSI != Obj.section_end() && "Can't find section for symbol");
167 section_iterator SE = Obj.section_end();
  /external/llvm/tools/dsymutil/
MachODebugMapParser.cpp 440 section_iterator Section = MainBinary.section_end();
466 if (Section == MainBinary.section_end() || Section->isText())
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
ObjectFile.h 275 virtual section_iterator section_end() const = 0;
279 return section_iterator_range(section_begin(), section_end());
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
InputFile.cpp 474 auto End = Value.File->obj().section_end();
500 return *SectionIter == Value.File->obj().section_end();
  /external/llvm/lib/Object/
Object.cpp 95 return (*unwrap(SI) == OB->getBinary()->section_end()) ? 1 : 0;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
Object.cpp 95 return (*unwrap(SI) == OB->getBinary()->section_end()) ? 1 : 0;
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 231 Object.section_end());
234 return SectionFilterIterator(Predicate, Object.section_end(),
235 Object.section_end());
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/
llvm-objdump.cpp 300 Object.section_end());
303 return SectionFilterIterator(Predicate, Object.section_end(),
304 Object.section_end());
619 while (i != 0 && SI != O->section_end()) {
623 if (SI == O->section_end())
    [all...]

Completed in 699 milliseconds

1 2 3