Home
last modified time | relevance | path

Searched refs:EqualsIdx (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp652 size_t EqualsIdx = Mapping.find_first_of('='); in applySpecificSectionMappings() local
653 std::string SectionIDStr = std::string(Mapping.substr(0, EqualsIdx)); in applySpecificSectionMappings()
666 std::string NewAddrStr = std::string(Mapping.substr(EqualsIdx + 1)); in applySpecificSectionMappings()
759 size_t EqualsIdx = Mapping.find_first_of('='); in remapSectionsAndSymbols() local
761 if (EqualsIdx == StringRef::npos) in remapSectionsAndSymbols()
765 std::string Symbol = Mapping.substr(0, EqualsIdx); in remapSectionsAndSymbols()
766 std::string AddrStr = Mapping.substr(EqualsIdx + 1); in remapSectionsAndSymbols()