Home
last modified time | relevance | path

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

/external/llvm/lib/IR/
DIntrinsicInst.cpp61 size_t CmpEnd = 4; // Skip the "llvm" component. in lookupLLVMIntrinsicByName() local
65 while (CmpEnd < Name.size() && High - Low > 0) { in lookupLLVMIntrinsicByName()
66 CmpStart = CmpEnd; in lookupLLVMIntrinsicByName()
67 CmpEnd = Name.find('.', CmpStart + 1); in lookupLLVMIntrinsicByName()
68 CmpEnd = CmpEnd == StringRef::npos ? Name.size() : CmpEnd; in lookupLLVMIntrinsicByName()
69 auto Cmp = [CmpStart, CmpEnd](const char *LHS, const char *RHS) { in lookupLLVMIntrinsicByName()
70 return strncmp(LHS + CmpStart, RHS + CmpStart, CmpEnd - CmpStart) < 0; in lookupLLVMIntrinsicByName()
/external/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()
/external/llvm-project/llvm/lib/IR/
DIntrinsicInst.cpp72 size_t CmpEnd = 4; // Skip the "llvm" component. in lookupLLVMIntrinsicByName() local
76 while (CmpEnd < Name.size() && High - Low > 0) { in lookupLLVMIntrinsicByName()
77 size_t CmpStart = CmpEnd; in lookupLLVMIntrinsicByName()
78 CmpEnd = Name.find('.', CmpStart + 1); in lookupLLVMIntrinsicByName()
79 CmpEnd = CmpEnd == StringRef::npos ? Name.size() : CmpEnd; in lookupLLVMIntrinsicByName()
80 auto Cmp = [CmpStart, CmpEnd](const char *LHS, const char *RHS) { in lookupLLVMIntrinsicByName()
81 return strncmp(LHS + CmpStart, RHS + CmpStart, CmpEnd - CmpStart) < 0; in lookupLLVMIntrinsicByName()