Searched refs:CmpStart (Results 1 – 3 of 3) 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-10.0/llvm/lib/IR/ |
D | IntrinsicInst.cpp | 75 size_t CmpStart = CmpEnd; in lookupLLVMIntrinsicByName() local 76 CmpEnd = Name.find('.', CmpStart + 1); 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/ |
D | IntrinsicInst.cpp | 77 size_t CmpStart = CmpEnd; in lookupLLVMIntrinsicByName() local 78 CmpEnd = Name.find('.', CmpStart + 1); 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()
|