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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DIntrinsicInst.cpp72 size_t CmpEnd = 4; // Skip the "llvm" component. local
76 while (CmpEnd < Name.size() && High - Low > 0) {
77 size_t CmpStart = CmpEnd;
78 CmpEnd = Name.find('.', CmpStart + 1);
79 CmpEnd = CmpEnd == StringRef::npos ? Name.size() : CmpEnd;
80 auto Cmp = [CmpStart, CmpEnd](const char *LHS, const char *RHS) {
81 return strncmp(LHS + CmpStart, RHS + CmpStart, CmpEnd - CmpStart) < 0;

Completed in 108 milliseconds