HomeSort by relevance Sort by last modified time
    Searched defs:NumRelocs (Results 1 - 7 of 7) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
ELF.cpp 364 uint64_t NumRelocs = ReadSLEB();
372 Relocs.reserve(NumRelocs);
373 while (NumRelocs) {
375 if (NumRelocsInGroup > NumRelocs)
377 NumRelocs -= NumRelocsInGroup;
COFFObjectFile.cpp 366 uint64_t NumRelocs = getNumberOfRelocations(Sec, M, Base);
367 if (!NumRelocs)
377 sizeof(coff_relocation) * NumRelocs))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MachObjectWriter.cpp 691 unsigned NumRelocs = Relocs.size();
693 WriteSection(Asm, Layout, *it, SectionStart, RelocTableEnd, NumRelocs);
694 RelocTableEnd += NumRelocs * macho::RelocationInfoSize;
  /external/swiftshader/third_party/LLVM/tools/llvm-objdump/
MachODump.cpp 93 uint32_t NumRelocs;
111 S.NumRelocs = Sect->NumRelocationTableEntries;
419 for (unsigned j = 0; j != Sections[SectIdx].NumRelocs; ++j) {
  /external/llvm/lib/MC/
MachObjectWriter.cpp 805 unsigned NumRelocs = Relocs.size();
811 RelocTableEnd, NumRelocs);
812 RelocTableEnd += NumRelocs * sizeof(MachO::any_relocation_info);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
MachObjectWriter.cpp 837 unsigned NumRelocs = Relocs.size();
843 RelocTableEnd, NumRelocs);
844 RelocTableEnd += NumRelocs * sizeof(MachO::any_relocation_info);
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 350 uint64_t NumRelocs = getNumberOfRelocations(Sec, M, Base);
351 if (!NumRelocs)
360 if (checkOffset(M, uintptr_t(begin), sizeof(coff_relocation) * NumRelocs))
    [all...]

Completed in 784 milliseconds