Home | History | Annotate | Download | only in IPO

Lines Matching refs:Low

251     std::set<ArgPromotion::IndicesVector>::iterator Low;
252 Low = Set.upper_bound(Indices);
253 if (Low != Set.begin())
254 Low--;
255 // Low is now the last element smaller than or equal to Indices. This means
260 return Low != Set.end() && IsPrefix(*Low, Indices);
270 std::set<ArgPromotion::IndicesVector>::iterator Low;
271 Low = Safe.upper_bound(ToMark);
273 if (Low != Safe.begin())
274 Low--;
275 // Low is now the last element smaller than or equal to Indices. This
278 if (Low != Safe.end()) {
279 if (IsPrefix(*Low, ToMark))
284 // Increment Low, so we can use it as a "insert before" hint
285 ++Low;
288 Low = Safe.insert(Low, ToMark);
289 ++Low;
292 while (Low != End && IsPrefix(ToMark, *Low)) {
293 std::set<ArgPromotion::IndicesVector>::iterator Remove = Low;
294 ++Low;