Searched refs:ComaIdx (Results 1 – 5 of 5) sorted by relevance
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldChecker.cpp | 336 size_t ComaIdx = RemainingExpr.find(','); in evalStubOrGOTAddr() local 337 StubContainerName = RemainingExpr.substr(0, ComaIdx).rtrim(); in evalStubOrGOTAddr() 338 RemainingExpr = RemainingExpr.substr(ComaIdx).ltrim(); in evalStubOrGOTAddr() 373 size_t ComaIdx = RemainingExpr.find(','); in evalSectionAddr() local 374 FileName = RemainingExpr.substr(0, ComaIdx).rtrim(); in evalSectionAddr() 375 RemainingExpr = RemainingExpr.substr(ComaIdx).ltrim(); in evalSectionAddr()
|
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldChecker.cpp | 337 size_t ComaIdx = RemainingExpr.find(','); in evalStubOrGOTAddr() local 338 StubContainerName = RemainingExpr.substr(0, ComaIdx).rtrim(); in evalStubOrGOTAddr() 339 RemainingExpr = RemainingExpr.substr(ComaIdx).ltrim(); in evalStubOrGOTAddr() 374 size_t ComaIdx = RemainingExpr.find(','); in evalSectionAddr() local 375 FileName = RemainingExpr.substr(0, ComaIdx).rtrim(); in evalSectionAddr() 376 RemainingExpr = RemainingExpr.substr(ComaIdx).ltrim(); in evalSectionAddr()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldChecker.cpp | 336 size_t ComaIdx = RemainingExpr.find(','); in evalStubAddr() local 337 FileName = RemainingExpr.substr(0, ComaIdx).rtrim(); in evalStubAddr() 338 RemainingExpr = RemainingExpr.substr(ComaIdx).ltrim(); in evalStubAddr() 381 size_t ComaIdx = RemainingExpr.find(','); in evalSectionAddr() local 382 FileName = RemainingExpr.substr(0, ComaIdx).rtrim(); in evalSectionAddr() 383 RemainingExpr = RemainingExpr.substr(ComaIdx).ltrim(); in evalSectionAddr()
|
/external/llvm/tools/llvm-rtdyld/ |
D | llvm-rtdyld.cpp | 499 size_t ComaIdx = Mapping.find_first_of(","); in applySpecificSectionMappings() local 501 if (ComaIdx == StringRef::npos) in applySpecificSectionMappings() 505 std::string FileName = SectionIDStr.substr(0, ComaIdx); in applySpecificSectionMappings() 506 std::string SectionName = SectionIDStr.substr(ComaIdx + 1); in applySpecificSectionMappings()
|
/external/llvm-project/llvm/tools/llvm-rtdyld/ |
D | llvm-rtdyld.cpp | 603 size_t ComaIdx = Mapping.find_first_of(","); in applySpecificSectionMappings() local 605 if (ComaIdx == StringRef::npos) in applySpecificSectionMappings() 609 std::string FileName = SectionIDStr.substr(0, ComaIdx); in applySpecificSectionMappings() 610 std::string SectionName = SectionIDStr.substr(ComaIdx + 1); in applySpecificSectionMappings()
|