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

  /external/llvm/lib/CodeGen/
InterferenceCache.cpp 160 SlotIndex StartI = I.start();
161 if (StartI >= Stop)
163 if (!BI->First.isValid() || StartI < BI->First)
164 BI->First = StartI;
173 SlotIndex StartI = I->start;
174 if (StartI >= Stop)
176 if (!BI->First.isValid() || StartI < BI->First)
177 BI->First = StartI;
  /external/clang/lib/Sema/
SemaOpenMP.cpp 415 auto StartI = std::next(Stack.rbegin());
417 if (FromParent && StartI != EndI) {
418 StartI = std::next(StartI);
421 if (isOpenMPLocal(D, StartI) &&
474 auto I = std::prev(StartI);
486 auto StartI = Stack.rbegin();
488 if (FromParent && StartI != EndI) {
489 StartI = std::next(StartI);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopRerollPass.cpp 402 UsesTy::iterator *StartI=nullptr);
957 /// Start searching from StartI, and do not return anything in Exclude.
958 /// If StartI is not given, start from In.begin().
962 UsesTy::iterator *StartI) {
963 UsesTy::iterator I = StartI ? *StartI : In.begin();
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonExpandCondsets.cpp 852 MachineBasicBlock::iterator StartI = IsDown ? TheI : ToI;
856 // Search for aliased memory reference in (StartI, EndI).
857 for (MachineBasicBlock::iterator I = std::next(StartI); I != EndI; ++I) {
    [all...]

Completed in 1677 milliseconds