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

  /frameworks/compile/mclinker/include/mcld/LD/
ELFReader.h 42 typedef llvm::ELF::Elf32_Rel Rel;
88 /// readRel - read ELF rel and create Relocation
127 typedef llvm::ELF::Elf64_Rel Rel;
173 /// readRel - read ELF rel and create Relocation
  /bionic/tools/relocation_packer/src/
elf_traits.h 26 typedef Elf32_Rel Rel;
50 typedef Elf64_Rel Rel;
  /frameworks/compile/mclinker/include/mcld/Target/
ELFDynamic.h 54 typedef llvm::ELF::Elf32_Rel Rel;
68 size_t relSize() const { return sizeof(Rel); }
85 typedef llvm::ELF::Elf64_Rel Rel;
99 size_t relSize() const { return sizeof(Rel); }
  /prebuilts/go/darwin-x86/src/path/filepath/
path.go 255 // Rel returns a relative path that is lexically equivalent to targpath when
257 // Join(basepath, Rel(basepath, targpath)) is equivalent to targpath itself.
262 // Rel calls Clean on the result.
263 func Rel(basepath, targpath string) (string, error) {
280 return "", errors.New("Rel: can't make " + targpath + " relative to " + basepath)
306 return "", errors.New("Rel: can't make " + targpath + " relative to " + basepath)
  /prebuilts/go/linux-x86/src/path/filepath/
path.go 255 // Rel returns a relative path that is lexically equivalent to targpath when
257 // Join(basepath, Rel(basepath, targpath)) is equivalent to targpath itself.
262 // Rel calls Clean on the result.
263 func Rel(basepath, targpath string) (string, error) {
280 return "", errors.New("Rel: can't make " + targpath + " relative to " + basepath)
306 return "", errors.New("Rel: can't make " + targpath + " relative to " + basepath)
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 54 typedef llvm::ELF::Elf32_Rel Rel;
74 typedef llvm::ELF::Elf64_Rel Rel;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
ExpressionValidate.py 239 return self.Rel()
243 def Rel(self):
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 122 COFFYAML::Relocation Rel;
132 Rel.SymbolName = *SymbolNameOrErr;
133 Rel.VirtualAddress = reloc->VirtualAddress;
134 Rel.Type = reloc->Type;
135 Relocations.push_back(Rel);
  /external/swiftshader/third_party/subzero/src/
IceELFSection.h 381 Elf32_Rel Rel;
382 Rel.r_offset = Fixup.position();
383 Rel.setSymbolAndType(Symbol->getNumber(), Fixup.kind());
384 Str.writeAddrOrOffset<IsELF64>(Rel.r_offset);
385 Str.writeELFWord<IsELF64>(Rel.r_info);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/
Elf32Convert.c 723 Elf_Rel *Rel = (Elf_Rel *)((UINT8*)mEhdr + RelShdr->sh_offset + RelOffset);
728 Elf_Sym *Sym = (Elf_Sym *)(Symtab + ELF_R_SYM(Rel->r_info) * SymtabShdr->sh_entsize);
761 Targ = mCoffFile + SecOffset + (Rel->r_offset - SecShdr->sh_addr);
767 switch (ELF_R_TYPE(Rel->r_info)) {
788 Error (NULL, 0, 3000, "Invalid", "%s unsupported ELF EM_386 relocation 0x%x.", mInImageName, (unsigned) ELF_R_TYPE(Rel->r_info));
791 switch (ELF32_R_TYPE(Rel->r_info)) {
857 Error (NULL, 0, 3000, "Invalid", "WriteSections (): %s unsupported ELF EM_ARM relocation 0x%x.", mInImageName, (unsigned) ELF32_R_TYPE(Rel->r_info));
880 Elf_Rel *Rel;
896 Rel = (Elf_Rel *)((UINT8*)mEhdr + RelShdr->sh_offset + RelIdx);
899 switch (ELF_R_TYPE(Rel->r_info)) {
    [all...]
Elf64Convert.c 734 Elf_Rela *Rel = (Elf_Rela *)((UINT8*)mEhdr + RelShdr->sh_offset + RelIdx);
739 Elf_Sym *Sym = (Elf_Sym *)(Symtab + ELF_R_SYM(Rel->r_info) * SymtabShdr->sh_entsize);
774 Targ = mCoffFile + SecOffset + (Rel->r_offset - SecShdr->sh_addr);
780 switch (ELF_R_TYPE(Rel->r_info)) {
789 (UINT32)(SecOffset + (Rel->r_offset - SecShdr->sh_addr)),
797 (UINT32)(SecOffset + (Rel->r_offset - SecShdr->sh_addr)),
805 (UINT32)(SecOffset + (Rel->r_offset - SecShdr->sh_addr)),
827 (UINT32)(SecOffset + (Rel->r_offset - SecShdr->sh_addr)),
835 Error (NULL, 0, 3000, "Invalid", "%s unsupported ELF EM_X86_64 relocation 0x%x.", mInImageName, (unsigned) ELF_R_TYPE(Rel->r_info));
839 switch (ELF_R_TYPE(Rel->r_info)) {
    [all...]
  /external/llvm/include/llvm/Object/
ELFTypes.h 54 typedef Elf_Rel_Impl<ELFType<E, Is64>, false> Rel;
67 typedef ArrayRef<Rel> RelRange;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Object/
ELFTypes.h 54 typedef Elf_Rel_Impl<ELFType<E, Is64>, false> Rel;
67 typedef ArrayRef<Rel> RelRange;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Object/
ELFTypes.h 54 typedef Elf_Rel_Impl<ELFType<E, Is64>, false> Rel;
67 typedef ArrayRef<Rel> RelRange;
  /build/soong/android/
paths.go 100 // Rel returns the portion of the path relative to the directory it was created from. For
101 // example, Rel on a PathsForModuleSrc would return the path relative to the module source
102 // directory, and OutputPath.Join("foo").Rel() would return "foo".
103 Rel() string
444 rel string
455 func (p basePath) Rel() string {
456 if p.rel != "" {
457 return p.rel
466 func (p basePath) withRel(rel string) basePath {
467 p.path = filepath.Join(p.path, rel)
    [all...]
  /external/llvm/lib/Target/Hexagon/
RDFGraph.cpp 1027 NodeList Rel = getRelatedRefs(IA, DA);
1028 NodeAddr<DefNode*> PDA = Rel.front();
1048 for (auto T : Rel)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
inst.go 136 // one of these types: Reg, Mem, Imm, Rel.
379 // A Rel is an offset relative to the current instruction pointer.
380 type Rel int32
382 func (Rel) isArg() {}
384 func (r Rel) String() string {
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
inst.go 136 // one of these types: Reg, Mem, Imm, Rel.
379 // A Rel is an offset relative to the current instruction pointer.
380 type Rel int32
382 func (Rel) isArg() {}
384 func (r Rel) String() string {
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 829 DataRefImpl Rel;
832 Rel = Reloc.getRawDataRefImpl();
833 RE = O->getRelocation(Rel);
    [all...]
  /toolchain/binutils/binutils-2.27/elfcpp/
elfcpp.h 627 // Reloc information from Rel/Rela r_info field.
    [all...]
  /art/runtime/
elf.h     [all...]

Completed in 1214 milliseconds