Searched defs:startLess (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DIntervalMap.h124 // The point x is contained in [a;b] when !startLess(x, a) && !stopLess(b, x).
135 /// startLess - Return true if x is not in [a;b].
137 static inline bool startLess(const T &x, const T &a) { function in struct:llvm::IntervalMapInfo
158 /// startLess - Return true if x is not in [a;b).
159 static inline bool startLess(const T &x, const T &a) { function in struct:llvm::IntervalMapHalfOpenInfo
607 return Traits::startLess(x, start(i)) ? NotFound : value(i);
1074 if (empty() || Traits::startLess(x, start()) || Traits::stopLess(stop(), x))
1674 if (!Traits::startLess(a, CurStart) || !canCoalesceLeft(a, this->value())) {
1689 if (Traits::startLess(b, this->stop()) ||
1804 if (P.leafOffset() == 0 && Traits::startLess(
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DIntervalMap.h123 // The point x is contained in [a;b] when !startLess(x, a) && !stopLess(b, x).
134 /// startLess - Return true if x is not in [a;b].
136 static inline bool startLess(const T &x, const T &a) { function in struct:llvm::IntervalMapInfo
586 return Traits::startLess(x, start(i)) ? NotFound : value(i);
1064 if (empty() || Traits::startLess(x, start()) || Traits::stopLess(stop(), x))
1664 if (!Traits::startLess(a, CurStart) || !canCoalesceLeft(a, this->value())) {
1679 if (Traits::startLess(b, this->stop()) ||
1794 if (P.leafOffset() == 0 && Traits::startLess(a, P.leaf<Leaf>().start(0))) {
2098 return Traits::startLess(ak, bk) ? bk : ak;
2105 return Traits::startLess(a
[all...]

Completed in 87 milliseconds