Searched refs:stopLess (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DIntervalMap.h123 // The point x is contained in [a;b] when !startLess(x, a) && !stopLess(b, x).
126 // allowed. This is so that stopLess(a, b) can be used to determine if two
140 /// stopLess - Return true if x is not in [a;b].
142 static inline bool stopLess(const T &b, const T &x) { function in struct:llvm::IntervalMapInfo
529 // - Traits::stopLess(start(i), stop(i)) - Non-empty, sane intervals.
531 // - Traits::stopLess(stop(i), start(i + 1) - Sorted.
553 /// @return First index with !stopLess(key[i].stop, x), or size.
557 assert((i == 0 || Traits::stopLess(stop(i - 1), x)) &&
559 while (i != Size && Traits::stopLess(stop(i), x)) ++i;
568 /// @return First index with !stopLess(ke
[all...]
/external/llvm/include/llvm/CodeGen/
H A DSlotIndexes.h639 static inline bool stopLess(const SlotIndex &b, const SlotIndex &x) {

Completed in 223 milliseconds