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

  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 29 bool isPCRel = (Type >> 24) & 1;
37 << " isPCRel: " << isPCRel
49 isPCRel,
58 isPCRel,
68 isPCRel,
80 bool isPCRel,
84 if (isPCRel)
109 bool isPCRel,
115 if (isPCRel)
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 996 bool isPCRel;
998 isPCRel = ((RE->Word0 >> 30) & 1);
1000 isPCRel = ((RE->Word1 >> 24) & 1);
1007 bool isPCRel = ((RE->Word1 >> 24) & 1);
1014 if (isPCRel) fmt << "PCREL";
1040 if (isPCRel) fmt << "P";
    [all...]

Completed in 17 milliseconds