Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DIntrinsics.cpp649 size_t CmpEnd = 4; // Skip the "llvm" component. in lookupLLVMIntrinsicByName() local
651 CmpEnd += 1 + Target.size(); // skip the .target component. in lookupLLVMIntrinsicByName()
656 while (CmpEnd < Name.size() && High - Low > 0) { in lookupLLVMIntrinsicByName()
657 size_t CmpStart = CmpEnd; in lookupLLVMIntrinsicByName()
658 CmpEnd = Name.find('.', CmpStart + 1); in lookupLLVMIntrinsicByName()
659 CmpEnd = CmpEnd == StringRef::npos ? Name.size() : CmpEnd; in lookupLLVMIntrinsicByName()
660 auto Cmp = [CmpStart, CmpEnd](auto LHS, auto RHS) { in lookupLLVMIntrinsicByName()
677 CmpEnd - CmpStart) < 0; in lookupLLVMIntrinsicByName()