Home
last modified time | relevance | path

Searched refs:ELFRelocationRef (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/
DInstrumentationMap.cpp112 auto AddendOrErr = object::ELFRelocationRef(Reloc).getAddend(); in loadObj()
117 if (auto AddendOrErr = object::ELFRelocationRef(Reloc).getAddend()) in loadObj()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DELFObjectFile.h50 friend class ELFRelocationRef; variable
188 class ELFRelocationRef : public RelocationRef {
190 ELFRelocationRef(const RelocationRef &B) : RelocationRef(B) { in ELFRelocationRef() function
209 const ELFRelocationRef *operator->() const {
210 return static_cast<const ELFRelocationRef *>(
214 const ELFRelocationRef &operator*() const {
215 return static_cast<const ELFRelocationRef &>(
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DRelocationResolver.cpp19 Expected<int64_t> AddendOrErr = ELFRelocationRef(R).getAddend(); in getELFAddend()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp1115 if (Expected<int64_t> AddendOrErr = ELFRelocationRef(*RelI).getAddend()) in processRelocationRef()