HomeSort by relevance Sort by last modified time
    Searched refs:CmpStart (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/IR/
IntrinsicInst.cpp 60 size_t CmpStart = 0;
66 CmpStart = CmpEnd;
67 CmpEnd = Name.find('.', CmpStart + 1);
69 auto Cmp = [CmpStart, CmpEnd](const char *LHS, const char *RHS) {
70 return strncmp(LHS + CmpStart, RHS + CmpStart, CmpEnd - CmpStart) < 0;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
IntrinsicInst.cpp 72 size_t CmpStart = 0;
78 CmpStart = CmpEnd;
79 CmpEnd = Name.find('.', CmpStart + 1);
81 auto Cmp = [CmpStart, CmpEnd](const char *LHS, const char *RHS) {
82 return strncmp(LHS + CmpStart, RHS + CmpStart, CmpEnd - CmpStart) < 0;

Completed in 1133 milliseconds