Lines Matching refs:Res
82 InMemoryStruct<macho::SymbolTableEntry> &Res) const { in getSymbolTableEntry()
93 Res); in getSymbolTableEntry()
97 InMemoryStruct<macho::Symbol64TableEntry> &Res) const { in getSymbol64TableEntry()
108 Res); in getSymbol64TableEntry()
322 section_iterator &Res) const { in getSymbolSection()
335 Res = end_sections(); in getSymbolSection()
337 Res = section_iterator(SectionRef(Sections[index-1], this)); in getSymbolSection()
343 SymbolRef::Type &Res) const { in getSymbolType()
354 Res = SymbolRef::ST_Other; in getSymbolType()
358 Res = SymbolRef::ST_Debug; in getSymbolType()
364 Res = SymbolRef::ST_Unknown; in getSymbolType()
367 Res = SymbolRef::ST_Function; in getSymbolType()
449 InMemoryStruct<macho::Section> &Res) const { in getSection()
451 MachOObj->ReadSection(LCI, DRI.d.b, Res); in getSection()
463 InMemoryStruct<macho::Section64> &Res) const { in getSection64()
465 MachOObj->ReadSection64(LCI, DRI.d.b, Res); in getSection64()
507 StringRef &Res) const { in getSectionFinalSegmentName()
515 Res = parseSegmentOrSectionName(sec->SegmentName); in getSectionFinalSegmentName()
523 Res = parseSegmentOrSectionName(sec->SegmentName); in getSectionFinalSegmentName()
724 InMemoryStruct<macho::RelocationEntry> &Res) const { in getRelocation()
735 MachOObj->ReadRelocationEntry(relOffset, Rel.d.a, Res); in getRelocation()
738 RelocationRef &Res) const { in getRelocationNext()
740 Res = RelocationRef(Rel, this); in getRelocationNext()
744 uint64_t &Res) const { in getRelocationAddress()
767 Res = reinterpret_cast<uintptr_t>(sectAddress + RelAddr); in getRelocationAddress()
771 uint64_t &Res) const { in getRelocationOffset()
779 Res = RE->Word0 & 0xFFFFFF; in getRelocationOffset()
781 Res = RE->Word0; in getRelocationOffset()
785 SymbolRef &Res) const { in getRelocationSymbol()
801 Res = SymbolRef(Sym, this); in getRelocationSymbol()
805 uint64_t &Res) const { in getRelocationType()
808 Res = RE->Word0; in getRelocationType()
809 Res <<= 32; in getRelocationType()
810 Res |= RE->Word1; in getRelocationType()
914 int64_t &Res) const { in getRelocationAdditionalInfo()
918 Res = 0; in getRelocationAdditionalInfo()
930 Res = reinterpret_cast<uintptr_t>(sectAddress); in getRelocationAdditionalInfo()
1275 LibraryRef &Res) const { in getLibraryNext()
1280 StringRef &Res) const { in getLibraryPath()