Searched refs:CmpStart (Results 1 – 2 of 2) sorted by relevance
/external/llvm/lib/IR/ |
D | IntrinsicInst.cpp | 60 size_t CmpStart = 0; in lookupLLVMIntrinsicByName() local 66 CmpStart = CmpEnd; in lookupLLVMIntrinsicByName() 67 CmpEnd = Name.find('.', CmpStart + 1); 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-7.0/llvm/lib/IR/ |
D | IntrinsicInst.cpp | 72 size_t CmpStart = 0; in lookupLLVMIntrinsicByName() local 78 CmpStart = CmpEnd; in lookupLLVMIntrinsicByName() 79 CmpEnd = Name.find('.', CmpStart + 1); in lookupLLVMIntrinsicByName() 81 auto Cmp = [CmpStart, CmpEnd](const char *LHS, const char *RHS) { in lookupLLVMIntrinsicByName() 82 return strncmp(LHS + CmpStart, RHS + CmpStart, CmpEnd - CmpStart) < 0; in lookupLLVMIntrinsicByName()
|