Home
last modified time | relevance | path

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

/external/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp497 size_t EqualsIdx = Mapping.find_first_of("="); in applySpecificSectionMappings() local
498 std::string SectionIDStr = Mapping.substr(0, EqualsIdx); in applySpecificSectionMappings()
518 std::string NewAddrStr = Mapping.substr(EqualsIdx + 1); in applySpecificSectionMappings()
610 size_t EqualsIdx = Mapping.find_first_of("="); in remapSectionsAndSymbols() local
612 if (EqualsIdx == StringRef::npos) in remapSectionsAndSymbols()
616 std::string Symbol = Mapping.substr(0, EqualsIdx); in remapSectionsAndSymbols()
617 std::string AddrStr = Mapping.substr(EqualsIdx + 1); in remapSectionsAndSymbols()
/external/llvm-project/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp601 size_t EqualsIdx = Mapping.find_first_of("="); in applySpecificSectionMappings() local
602 std::string SectionIDStr = std::string(Mapping.substr(0, EqualsIdx)); in applySpecificSectionMappings()
615 std::string NewAddrStr = std::string(Mapping.substr(EqualsIdx + 1)); in applySpecificSectionMappings()
708 size_t EqualsIdx = Mapping.find_first_of('='); in remapSectionsAndSymbols() local
710 if (EqualsIdx == StringRef::npos) in remapSectionsAndSymbols()
714 std::string Symbol = Mapping.substr(0, EqualsIdx); in remapSectionsAndSymbols()
715 std::string AddrStr = Mapping.substr(EqualsIdx + 1); in remapSectionsAndSymbols()