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

  /external/llvm/include/llvm/Object/
MachO.h 84 virtual error_code getRelocationNext(DataRefImpl Rel,
86 virtual error_code getRelocationAddress(DataRefImpl Rel,
88 virtual error_code getRelocationOffset(DataRefImpl Rel,
90 virtual error_code getRelocationSymbol(DataRefImpl Rel,
92 virtual error_code getRelocationType(DataRefImpl Rel,
94 virtual error_code getRelocationTypeName(DataRefImpl Rel,
96 virtual error_code getRelocationAdditionalInfo(DataRefImpl Rel,
98 virtual error_code getRelocationValueString(DataRefImpl Rel,
100 virtual error_code getRelocationHidden(DataRefImpl Rel, bool &Result) const;
121 void getRelocation(DataRefImpl Rel,
    [all...]
COFF.h 106 const coff_relocation *toRel(DataRefImpl Rel) const;
138 virtual error_code getRelocationNext(DataRefImpl Rel,
140 virtual error_code getRelocationAddress(DataRefImpl Rel,
142 virtual error_code getRelocationOffset(DataRefImpl Rel,
144 virtual error_code getRelocationSymbol(DataRefImpl Rel,
146 virtual error_code getRelocationType(DataRefImpl Rel,
148 virtual error_code getRelocationTypeName(DataRefImpl Rel,
150 virtual error_code getRelocationAdditionalInfo(DataRefImpl Rel,
152 virtual error_code getRelocationValueString(DataRefImpl Rel,
ELF.h 497 /// @brief Get the relocation section that contains \a Rel.
498 const Elf_Shdr *getRelSection(DataRefImpl Rel) const {
499 return getSection(Rel.w.b);
502 bool isRelocationHasAddend(DataRefImpl Rel) const;
509 const Elf_Rel *getRel(DataRefImpl Rel) const;
568 virtual error_code getRelocationNext(DataRefImpl Rel,
570 virtual error_code getRelocationAddress(DataRefImpl Rel,
572 virtual error_code getRelocationOffset(DataRefImpl Rel,
574 virtual error_code getRelocationSymbol(DataRefImpl Rel,
576 virtual error_code getRelocationType(DataRefImpl Rel,
    [all...]
ObjectFile.h 325 virtual error_code getRelocationNext(DataRefImpl Rel,
327 virtual error_code getRelocationAddress(DataRefImpl Rel,
329 virtual error_code getRelocationOffset(DataRefImpl Rel,
331 virtual error_code getRelocationSymbol(DataRefImpl Rel,
333 virtual error_code getRelocationType(DataRefImpl Rel,
335 virtual error_code getRelocationTypeName(DataRefImpl Rel,
337 virtual error_code getRelocationAdditionalInfo(DataRefImpl Rel,
339 virtual error_code getRelocationValueString(DataRefImpl Rel,
341 virtual error_code getRelocationHidden(DataRefImpl Rel, bool &Result) const {
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 205 void RuntimeDyldMachO::processRelocationRef(const ObjRelocationInfo &Rel,
211 uint32_t RelType = (uint32_t) (Rel.Type & 0xffffffffL);
213 SectionEntry &Section = Sections[Rel.SectionID];
214 uint8_t *Target = Section.Address + Rel.Offset;
220 const SymbolRef &Symbol = Rel.Symbol;
271 RelocationEntry RE(Rel.SectionID, StubTargetAddr - Section.Address,
283 RelocationEntry RE(Rel.SectionID, Rel.Offset, RelType, Value.Addend);
RuntimeDyldMachO.h 51 virtual void processRelocationRef(const ObjRelocationInfo &Rel,
RuntimeDyldELF.cpp 376 void RuntimeDyldELF::processRelocationRef(const ObjRelocationInfo &Rel,
382 uint32_t RelType = (uint32_t)(Rel.Type & 0xffffffffL);
383 intptr_t Addend = (intptr_t)Rel.AdditionalInfo;
384 const SymbolRef &Symbol = Rel.Symbol;
434 DEBUG(dbgs() << "\t\tRel.SectionID: " << Rel.SectionID
435 << " Rel.Offset: " << Rel.Offset
443 SectionEntry &Section = Sections[Rel.SectionID];
444 uint8_t *Target = Section.Address + Rel.Offset;
458 RelocationEntry RE(Rel.SectionID, StubTargetAddr - Section.Address
    [all...]
RuntimeDyldELF.h 57 virtual void processRelocationRef(const ObjRelocationInfo &Rel,
RuntimeDyldImpl.h 246 virtual void processRelocationRef(const ObjRelocationInfo &Rel,
  /external/llvm/lib/Object/
MachOObjectFile.cpp 682 getRelocation(DataRefImpl Rel,
687 getSection64(Sections[Rel.d.b], Sect);
691 getSection(Sections[Rel.d.b], Sect);
694 MachOObj->ReadRelocationEntry(relOffset, Rel.d.a, Res);
696 error_code MachOObjectFile::getRelocationNext(DataRefImpl Rel,
698 ++Rel.d.a;
699 Res = RelocationRef(Rel, this);
702 error_code MachOObjectFile::getRelocationAddress(DataRefImpl Rel,
707 getSection64(Sections[Rel.d.b], Sect);
711 getSection(Sections[Rel.d.b], Sect)
    [all...]
COFFObjectFile.cpp 686 const coff_relocation *COFFObjectFile::toRel(DataRefImpl Rel) const {
687 return reinterpret_cast<const coff_relocation*>(Rel.p);
689 error_code COFFObjectFile::getRelocationNext(DataRefImpl Rel,
691 Rel.p = reinterpret_cast<uintptr_t>(
692 reinterpret_cast<const coff_relocation*>(Rel.p) + 1);
693 Res = RelocationRef(Rel, this);
696 error_code COFFObjectFile::getRelocationAddress(DataRefImpl Rel,
698 Res = toRel(Rel)->VirtualAddress;
701 error_code COFFObjectFile::getRelocationOffset(DataRefImpl Rel,
703 Res = toRel(Rel)->VirtualAddress
    [all...]
  /external/elfutils/libelf/
gelf_xlate.h 66 TYPE (Rel, LIBELFBITS)
abstract.h 158 START (32, Rel, Ext##Rel) \
161 END (32, Ext##Rel)
163 START (64, Rel, Ext##Rel) \
166 END (64, Ext##Rel)
elf_getdata.c 111 [ELF_T_REL] = __alignof__ (ElfW2(Bits,Rel)), \
  /frameworks/compile/mclinker/include/mcld/Target/
ELFDynamic.h 61 typedef llvm::ELF::Elf32_Rel Rel;
79 { return sizeof(Rel); }
  /frameworks/compile/mclinker/include/mcld/LD/
ELFReader.h 104 /// readRel - read ELF rel and create Relocation
170 typedef llvm::ELF::Elf32_Rel Rel;
228 /// readRel - read ELF rel and create Relocation
  /tools/motodev/src/plugins/videos/libs/gdata/java/lib/
gdata-client-1.0.jar 
gdata-core-1.0.jar 
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorObjC.pm 593 if ($type =~ /(\w+)(Abs|Rel)$/) {
    [all...]
CodeGeneratorJS.pm 248 $joinedName =~ s/Abs|Rel//;
    [all...]
CodeGeneratorV8.pm 137 $joinedName =~ s/Abs|Rel//;
461 $className =~ s/Abs|Rel//;
    [all...]

Completed in 237 milliseconds