Searched refs:Iters (Results 1 – 7 of 7) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | InterferenceCache.cpp | 89 Iters.resize(e); in reset() 91 Iters[i].setMap(Aliases[i].first->getMap()); in reset() 114 for (unsigned i = 0, e = Iters.size(); i != e; ++i) in update() 115 Iters[i].find(Start); in update() 117 for (unsigned i = 0, e = Iters.size(); i != e; ++i) in update() 118 Iters[i].advanceTo(Start); in update() 129 for (unsigned i = 0, e = Iters.size(); i != e; ++i) { in update() 130 Iter &I = Iters[i]; in update() 155 for (unsigned i = 0, e = Iters.size(); i != e; ++i) { in update() 156 Iter &I = Iters[i]; in update()
|
D | InterferenceCache.h | 65 SmallVector<Iter, 8> Iters; variable
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | STLExtras.h | 435 template<typename... Iters> struct ZipTupleType { 436 using type = std::tuple<decltype(*declval<Iters>())...>; 439 template <typename ZipType, typename... Iters> 443 Iters>::iterator_category...>::type, 445 typename ZipTupleType<Iters...>::type, 447 0, std::tuple<Iters...>>::type>::difference_type, 452 typename ZipTupleType<Iters...>::type *, 453 typename ZipTupleType<Iters...>::type>; 455 template <typename ZipType, typename... Iters> 456 struct zip_common : public zip_traits<ZipType, Iters...> { [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | STLExtras.h | 358 template <typename... Iters> class zip_first { 361 typedef std::tuple<decltype(*std::declval<Iters>())...> value_type; 362 std::tuple<Iters...> iterators; 370 return std::tuple<Iters...>(std::next(std::get<Ns>(iterators))...); in decltype() 374 value_type operator*() { return deres(index_sequence_for<Iters...>{}); } 376 void operator++() { iterators = tup_inc(index_sequence_for<Iters...>{}); } 378 bool operator!=(const zip_first<Iters...> &other) const { 381 zip_first(Iters &&... ts) : iterators(std::forward<Iters>(ts)...) {} in zip_first() 384 template <typename... Iters> class zip_shortest : public zip_first<Iters...> { 386 bool test(const zip_first<Iters...> &other, index_sequence<Ns...>) const { in test() [all …]
|
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/ |
D | JITMemoryManagerTest.cpp | 241 int Iters = (SlabSize / Size) + 1; in TEST() local 247 for (int I = 0; I < Iters; ++I) in TEST() 252 for (int I = 0; I < Iters; ++I) in TEST() 264 int Iters = (SlabSize / Size) + 1; in TEST() local 270 for (int I = 0; I < Iters; ++I) in TEST() 275 for (int I = 0; I < Iters; ++I) in TEST()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonVectorLoopCarriedReuse.cpp | 292 bool isDepChainBtwn(Instruction *I1, Instruction *I2, int Iters); 384 int Iters = D->iterations(); in findValueToReuse() local 440 if (!isDepChainBtwn(OpInst, BEOpInst, Iters)) { in findValueToReuse() 602 int Iters) { in isDepChainBtwn() argument 604 if (D->front() == I1 && D->back() == I2 && D->iterations() == Iters) in isDepChainBtwn()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/ |
D | ScalarEvolutionTest.cpp | 685 int Iters = 20; in TEST_F() local 686 for (int i = 0; i < Iters; i++) { in TEST_F() 694 if (i != Iters - 1) in TEST_F()
|