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

  /external/swiftshader/third_party/subzero/src/
IceELFSection.h 335 const Elf64_Sym &SymInfo = KeyValue.second.Sym;
336 Str.writeELFWord<IsELF64>(SymInfo.st_name);
337 Str.write8(SymInfo.st_info);
338 Str.write8(SymInfo.st_other);
339 Str.writeLE16(SymInfo.st_shndx);
340 Str.writeAddrOrOffset<IsELF64>(SymInfo.st_value);
341 Str.writeELFXword<IsELF64>(SymInfo.st_size);
345 const Elf64_Sym &SymInfo = KeyValue.second.Sym;
346 Str.writeELFWord<IsELF64>(SymInfo.st_name);
347 Str.writeAddrOrOffset<IsELF64>(SymInfo.st_value)
    [all...]
IceELFSection.cpp 160 Elf64_Sym &SymInfo = KeyValue.second.Sym;
162 SymInfo.st_name = StrTab->getIndex(Name.toString());
163 SymInfo.st_shndx = Section->getNumber();
169 Elf64_Sym &SymInfo = KeyValue.second.Sym;
171 SymInfo.st_name = StrTab->getIndex(Name);
172 SymInfo.st_shndx = Section->getNumber();
  /external/clang/tools/c-index-test/
core_main.cpp 56 static void printSymbolInfo(SymbolInfo SymInfo, raw_ostream &OS);
169 static void printSymbolInfo(SymbolInfo SymInfo, raw_ostream &OS) {
170 OS << getSymbolKindString(SymInfo.Kind);
171 if (SymInfo.SubKinds) {
173 printSymbolSubKinds(SymInfo.SubKinds, OS);
176 OS << '/' << getSymbolLanguageString(SymInfo.Lang);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 447 const auto &SymInfo = pos->second;
449 if (SymInfo.getSectionID() == AbsoluteSymbolSection)
451 return getSectionAddress(SymInfo.getSectionID()) + SymInfo.getOffset();
RuntimeDyldChecker.cpp 856 const auto &SymInfo = pos->second;
857 uint8_t *SectionAddr = getRTDyld().getSectionAddress(SymInfo.getSectionID());
859 SymInfo.getOffset(),
860 getRTDyld().Sections[SymInfo.getSectionID()].getSize() -
861 SymInfo.getOffset());
    [all...]
RuntimeDyldMachO.cpp 116 const auto &SymInfo = SI->second;
117 Value.SectionID = SymInfo.getSectionID();
118 Value.Offset = SymInfo.getOffset() + RE.Addend;
RuntimeDyld.cpp 788 const auto &SymInfo = Loc->second;
789 RECopy.Addend += SymInfo.getOffset();
790 Relocations[SymInfo.getSectionID()].push_back(RECopy);
    [all...]
RuntimeDyldELF.cpp     [all...]
  /external/clang/tools/libclang/
CXIndexDataConsumer.cpp     [all...]

Completed in 157 milliseconds