HomeSort by relevance Sort by last modified time
    Searched defs:StartI (Results 1 - 3 of 3) sorted by null

  /external/swiftshader/third_party/LLVM/lib/CodeGen/
InterferenceCache.cpp 133 SlotIndex StartI = I.start();
134 if (StartI >= Stop)
136 if (!BI->First.isValid() || StartI < BI->First)
137 BI->First = StartI;
  /external/llvm/lib/CodeGen/
InterferenceCache.cpp 161 SlotIndex StartI = I.start();
162 if (StartI >= Stop)
164 if (!BI->First.isValid() || StartI < BI->First)
165 BI->First = StartI;
174 SlotIndex StartI = I->start;
175 if (StartI >= Stop)
177 if (!BI->First.isValid() || StartI < BI->First)
178 BI->First = StartI;
  /external/clang/lib/Sema/
SemaOpenMP.cpp 719 auto StartI = std::next(Stack.rbegin());
721 if (FromParent && StartI != EndI) {
722 StartI = std::next(StartI);
724 auto I = std::prev(StartI);
738 auto StartI = Stack.rbegin();
740 if (FromParent && StartI != EndI) {
741 StartI = std::next(StartI);
743 return getDSA(StartI, D)
    [all...]

Completed in 1180 milliseconds