HomeSort by relevance Sort by last modified time
    Searched refs:Relocs (Results 51 - 75 of 81) sorted by null

1 23 4

  /external/llvm/lib/MC/
ELFObjectWriter.cpp     [all...]
  /prebuilts/go/darwin-x86/src/debug/pe/
section.go 60 relocs := make([]Reloc, sh.NumberOfRelocations)
61 err = binary.Read(r, binary.LittleEndian, relocs)
65 return relocs, nil
86 Relocs []Reloc
file.go 174 f.Sections[i].Relocs, err = readRelocs(&f.Sections[i].SectionHeader, sr)
  /prebuilts/go/linux-x86/src/debug/pe/
section.go 60 relocs := make([]Reloc, sh.NumberOfRelocations)
61 err = binary.Read(r, binary.LittleEndian, relocs)
65 return relocs, nil
86 Relocs []Reloc
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnit.h 180 const RelocAddrMap *getRelocMap() const { return &InfoSection.Relocs; }
  /prebuilts/go/darwin-x86/src/cmd/internal/objfile/
goobj.go 82 sym.Relocs = append(sym.Relocs, Reloc{Addr: uint64(s.Data.Offset) + uint64(r.Offset), Size: uint64(r.Size), Stringer: &s.Reloc[i]})
objfile.go 44 Relocs []Reloc // in increasing Addr order
disasm.go 205 relocs := sym.Relocs
229 d.Decode(symStart, symEnd, relocs, func(pc, size uint64, file string, line int, text string) {
266 func (d *Disasm) Decode(start, end uint64, relocs []Reloc, f func(pc, size uint64, file string, line int, text string)) {
281 for len(relocs) > 0 && relocs[0].Addr < i+uint64(size) {
287 text += relocs[0].Stringer.String(pc - start)
288 relocs = relocs[1:]
  /prebuilts/go/linux-x86/src/cmd/internal/objfile/
goobj.go 82 sym.Relocs = append(sym.Relocs, Reloc{Addr: uint64(s.Data.Offset) + uint64(r.Offset), Size: uint64(r.Size), Stringer: &s.Reloc[i]})
objfile.go 44 Relocs []Reloc // in increasing Addr order
disasm.go 205 relocs := sym.Relocs
229 d.Decode(symStart, symEnd, relocs, func(pc, size uint64, file string, line int, text string) {
266 func (d *Disasm) Decode(start, end uint64, relocs []Reloc, f func(pc, size uint64, file string, line int, text string)) {
281 for len(relocs) > 0 && relocs[0].Addr < i+uint64(size) {
287 text += relocs[0].Stringer.String(pc - start)
288 relocs = relocs[1:]
  /prebuilts/go/darwin-x86/src/debug/macho/
file.go 113 Relocs []Reloc
505 sh.Relocs = make([]Reloc, sh.Nreloc)
506 for i := range sh.Relocs {
507 rel := &sh.Relocs[i]
file_test.go 302 have := sh.Relocs
  /prebuilts/go/linux-x86/src/debug/macho/
file.go 113 Relocs []Reloc
505 sh.Relocs = make([]Reloc, sh.Nreloc)
506 for i := range sh.Relocs {
507 rel := &sh.Relocs[i]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnit.h 203 const RelocAddrMap *getRelocMap() const { return &InfoSection.Relocs; }
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/DWARF/
DWARFContext.h 49 uint32_t *Off, const RelocAddrMap *Relocs,
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/DWARF/
DWARFContext.h 49 uint32_t *Off, const RelocAddrMap *Relocs,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnit.h 203 const RelocAddrMap *getRelocMap() const { return &InfoSection.Relocs; }
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/DWARF/
DWARFContext.h 49 uint32_t *Off, const RelocAddrMap *Relocs,
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/DWARF/
DWARFContext.h 49 uint32_t *Off, const RelocAddrMap *Relocs,
  /external/swiftshader/third_party/LLVM/lib/MC/
ELFObjectWriter.cpp 747 std::vector<ELFRelocationEntry> &Relocs = Relocations[SD];
749 array_pod_sort(Relocs.begin(), Relocs.end());
751 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
752 ELFRelocationEntry entry = Relocs[e - i - 1];
    [all...]
  /toolchain/binutils/binutils-2.27/gold/
output.h 595 // Whether any dynamic relocs have been applied to this section.
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 382 /// \brief Resolves relocations from Relocs list with address from Value.
383 void resolveRelocationList(const RelocationList &Relocs, uint64_t Value);
  /prebuilts/go/darwin-x86/src/cmd/link/internal/loadpe/
ldpe.go 223 for j, r := range rsect.Relocs {
  /prebuilts/go/linux-x86/src/cmd/link/internal/loadpe/
ldpe.go 223 for j, r := range rsect.Relocs {

Completed in 513 milliseconds

1 23 4