Searched refs:RootIt (Results 1 - 4 of 4) sorted by relevance
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
H A D | STLExtras.h | 65 template <class RootIt, class UnaryFunc> 67 RootIt current; 70 typedef typename std::iterator_traits<RootIt>::iterator_category 72 typedef typename std::iterator_traits<RootIt>::difference_type 80 typedef RootIt iterator_type; 81 typedef mapped_iterator<RootIt, UnaryFunc> _Self; 83 inline const RootIt &getCurrent() const { return current; } 86 inline explicit mapped_iterator(const RootIt &I, UnaryFunc F)
|
/external/llvm/include/llvm/ADT/ |
H A D | STLExtras.h | 113 template <class RootIt, class UnaryFunc> 115 RootIt current; 118 typedef typename std::iterator_traits<RootIt>::iterator_category 120 typedef typename std::iterator_traits<RootIt>::difference_type 123 UnaryFunc(decltype(*std::declval<RootIt>()))> 130 typedef RootIt iterator_type; 132 inline const RootIt &getCurrent() const { return current; } 135 inline explicit mapped_iterator(const RootIt &I, UnaryFunc F)
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | STLExtras.h | 127 template <class RootIt, class UnaryFunc> 129 RootIt current; 132 typedef typename std::iterator_traits<RootIt>::iterator_category 134 typedef typename std::iterator_traits<RootIt>::difference_type 137 UnaryFunc(decltype(*std::declval<RootIt>()))> 144 typedef RootIt iterator_type; 146 inline const RootIt &getCurrent() const { return current; } 149 inline explicit mapped_iterator(const RootIt &I, UnaryFunc F)
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | LoopRerollPass.cpp | 1215 auto RootIt = nextInstr(Iter, Uses, Visited); local 1218 while (BaseIt != Uses.end() && RootIt != Uses.end()) { 1220 Instruction *RootInst = RootIt->first; 1230 LastRootIt = RootIt; 1232 RootIt = nextInstr(Iter, Uses, Visited); 1248 auto TryIt = RootIt; 1257 if (TryIt == Uses.end() || TryIt == RootIt || 1258 instrDependsOn(TryIt->first, RootIt, TryIt)) { 1264 RootIt = TryIt; 1273 // that we visit nodes, LastRootIt might be *before* RootIt, i [all...] |
Completed in 9410 milliseconds