Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp397 size_t ComaIdx = RemainingExpr.find(','); in evalStubOrGOTAddr() local
398 StubContainerName = RemainingExpr.substr(0, ComaIdx).rtrim(); in evalStubOrGOTAddr()
399 RemainingExpr = RemainingExpr.substr(ComaIdx).ltrim(); in evalStubOrGOTAddr()
444 size_t ComaIdx = RemainingExpr.find(','); in evalSectionAddr() local
445 FileName = RemainingExpr.substr(0, ComaIdx).rtrim(); in evalSectionAddr()
446 RemainingExpr = RemainingExpr.substr(ComaIdx).ltrim(); in evalSectionAddr()
/freebsd/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp654 size_t ComaIdx = Mapping.find_first_of(','); in applySpecificSectionMappings() local
656 if (ComaIdx == StringRef::npos) in applySpecificSectionMappings()
660 std::string FileName = SectionIDStr.substr(0, ComaIdx); in applySpecificSectionMappings()
661 std::string SectionName = SectionIDStr.substr(ComaIdx + 1); in applySpecificSectionMappings()