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

  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetJITInfo.h 108 unsigned NumRelocs, unsigned char* GOTBase) {
109 assert(NumRelocs == 0 && "This target does not have relocations!");
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsJITInfo.h 60 unsigned NumRelocs, unsigned char* GOTBase);
MipsJITInfo.cpp 196 unsigned NumRelocs, unsigned char* GOTBase) {
197 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCJITInfo.h 38 unsigned NumRelocs, unsigned char* GOTBase);
PPCJITInfo.cpp 411 unsigned NumRelocs, unsigned char* GOTBase) {
412 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86JITInfo.h 67 unsigned NumRelocs, unsigned char* GOTBase);
X86JITInfo.cpp 528 unsigned NumRelocs, unsigned char* GOTBase) {
529 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMJITInfo.h 81 unsigned NumRelocs, unsigned char* GOTBase);
ARMJITInfo.cpp 268 unsigned NumRelocs, unsigned char* GOTBase) {
269 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
  /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/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/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 183 milliseconds