Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DIntrinsicInst.cpp70 size_t CmpEnd = 4; // Skip the "llvm" component. in lookupLLVMIntrinsicByName() local
74 while (CmpEnd < Name.size() && High - Low > 0) { in lookupLLVMIntrinsicByName()
75 size_t CmpStart = CmpEnd; in lookupLLVMIntrinsicByName()
76 CmpEnd = Name.find('.', CmpStart + 1); in lookupLLVMIntrinsicByName()
77 CmpEnd = CmpEnd == StringRef::npos ? Name.size() : CmpEnd; in lookupLLVMIntrinsicByName()
78 auto Cmp = [CmpStart, CmpEnd](const char *LHS, const char *RHS) { in lookupLLVMIntrinsicByName()
79 return strncmp(LHS + CmpStart, RHS + CmpStart, CmpEnd - CmpStart) < 0; in lookupLLVMIntrinsicByName()