HomeSort by: relevance | last modified time | path
    Searched refs:SectSize (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
ProfiledBinary.cpp 216 uint64_t SectSize = Section.getSize();
220 : SectionOffset + SectSize;
383 uint64_t SectSize = Section.getSize();
384 if (!SectSize)
388 TextSections.insert({SectionOffset, SectSize});
394 << format("0x%" PRIx64, SectionOffset + SectSize) << "]:\n\n";
  /src/external/apache2/llvm/dist/llvm/tools/sancov/
sancov.cpp 749 uint64_t SectSize = Section.getSize();
750 if (!SectSize)
  /src/external/apache2/llvm/dist/llvm/lib/Object/
MachOObjectFile.cpp 1934 uint64_t SectSize;
1939 SectSize = Sect.size;
1944 SectSize = Sect.size;
1948 return SectSize;
1952 if (FileSize - SectOffset < SectSize)
1954 return SectSize;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
MachODump.cpp 1507 uint64_t SectSize = Sect->getSize();
1535 for (uint64_t i = lp - SectAddress; i < SectSize && Contents[i] != '\0';
3274 uint64_t SectSize = ((*(info->Sections))[SectIdx]).getSize();
3275 if (SectSize == 0)
3291 if (Address >= SectAddress && Address < SectAddress + SectSize) {
3294 left = SectSize - offset;
7541 uint64_t SectSize = Sections[SectIdx].getSize();
7546 if (Start > SectSize) {
7570 uint64_t End = containsNextSym ? std::min(NextSym, SectSize) : SectSize;
    [all...]
llvm-objdump.cpp 1175 uint64_t SectSize = Section.getSize();
1176 if (!SectSize)
1251 uint64_t End = std::min<uint64_t>(SectionAddr + SectSize, StopAddress);

Completed in 207 milliseconds