Home
last modified time | relevance | path

Searched refs:zip_first (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSTLExtras.h358 template <typename... Iters> class zip_first {
378 bool operator!=(const zip_first<Iters...> &other) const {
381 zip_first(Iters &&... ts) : iterators(std::forward<Iters>(ts)...) {} in zip_first() function
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()
393 bool operator!=(const zip_first<Iters...> &other) const {
397 : zip_first<Iters...>(std::forward<Iters>(ts)...) {} in zip_shortest()
432 detail::zippy<detail::zip_first, T, U, Args...> zip_first(T &&t, U &&u, in zip_first() function
434 return detail::zippy<detail::zip_first, T, U, Args...>( in zip_first()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DIteratorTest.cpp294 for (auto tup : zip_first(SmallVector<bool, 0>{1, 1, 0, 1}, pi)) { in TEST()
323 for (auto tup : zip_first(SmallVector<bool, 0>{1, 1, 0, 1}, pi)) { in TEST()
330 for (auto tup : zip_first(SmallVector<bool, 0>{1, 1, 0, 1}, pi)) { in TEST()
341 auto zipped = zip_first(pi, vector<bool>{1, 1, 0, 1, 1, 1, 0}); in TEST()
360 auto zipped = zip_first(ascending, vector<bool>{0, 1, 0, 1, 0, 1}); in TEST()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DSTLExtras.h500 struct zip_first : public zip_common<zip_first<Iters...>, Iters...> {
501 using Base = zip_common<zip_first<Iters...>, Iters...>;
503 bool operator==(const zip_first<Iters...> &other) const {
507 zip_first(Iters &&... ts) : Base(std::forward<Iters>(ts)...) {}
568 detail::zippy<detail::zip_first, T, U, Args...> zip_first(T &&t, U &&u,
570 return detail::zippy<detail::zip_first, T, U, Args...>(
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFAcceleratorTable.cpp280 for (const auto &Tuple : zip_first(HdrData->Atoms, Values)) { in lookup()
535 for (const auto &Tuple : zip_first(Abbr->Attributes, Values)) { in lookup()
569 for (const auto &Tuple : zip_first(Abbr->Attributes, Values)) { in dump()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DSimpleLoopUnswitch.cpp938 for (auto ZippedInsts : llvm::zip_first( in buildClonedLoopBlocks()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp975 for (auto CountAndVT : zip_first(RegCount, RegVTs)) { in getRegsAndSizes()