Home | History | Annotate | Download | only in IPO

Lines Matching refs:Low

378     std::set<ArgPromotion::IndicesVector>::iterator Low;
379 Low = Set.upper_bound(Indices);
380 if (Low != Set.begin())
381 Low--;
382 // Low is now the last element smaller than or equal to Indices. This means
387 return Low != Set.end() && IsPrefix(*Low, Indices);
397 std::set<ArgPromotion::IndicesVector>::iterator Low;
398 Low = Safe.upper_bound(ToMark);
400 if (Low != Safe.begin())
401 Low--;
402 // Low is now the last element smaller than or equal to Indices. This
405 if (Low != Safe.end()) {
406 if (IsPrefix(*Low, ToMark))
411 // Increment Low, so we can use it as a "insert before" hint
412 ++Low;
415 Low = Safe.insert(Low, ToMark);
416 ++Low;
419 while (Low != End && IsPrefix(ToMark, *Low)) {
420 std::set<ArgPromotion::IndicesVector>::iterator Remove = Low;
421 ++Low;