Searched refs:BigType (Results 1 – 8 of 8) sorted by relevance
22 struct BigType { char buffer[64] = {10}; }; struct26 BigType bt; in test()27 std::ranges::single_view<BigType> sv(bt); in test()32 const BigType bt; in test()33 const std::ranges::single_view<BigType> sv(bt); in test()39 BigType bt; in test()40 std::ranges::single_view<BigType> sv(std::move(bt)); in test()45 const BigType bt; in test()46 const std::ranges::single_view<BigType> sv(std::move(bt)); in test()
21 struct BigType { char buffer[64] = {10}; }; struct53 auto sv = std::ranges::single_view<BigType>(BigType()); in test()56 ASSERT_SAME_TYPE(decltype(sv.data()), BigType*); in test()59 const auto sv = std::ranges::single_view<BigType>(BigType()); in test()62 ASSERT_SAME_TYPE(decltype(sv.data()), const BigType*); in test()
21 struct BigType { char buffer[64] = {10}; }; struct53 auto sv = std::ranges::single_view<BigType>(BigType()); in test()56 ASSERT_SAME_TYPE(decltype(sv.begin()), BigType*); in test()59 const auto sv = std::ranges::single_view<BigType>(BigType()); in test()62 ASSERT_SAME_TYPE(decltype(sv.begin()), const BigType*); in test()
21 struct BigType { char buffer[64] = {10}; }; argument53 auto sv = std::ranges::single_view<BigType>(BigType()); in test()56 ASSERT_SAME_TYPE(decltype(sv.end()), BigType*); in test()59 const auto sv = std::ranges::single_view<BigType>(BigType()); in test()62 ASSERT_SAME_TYPE(decltype(sv.end()), const BigType*); in test()
19 struct BigType { char buffer[64] = {10}; }; argument31 std::ranges::single_view<BigType> sv; in test()36 const std::ranges::single_view<BigType> sv; in test()
41 struct BigType { struct46 auto operator<=>(const BigType&) const = default; argument48 constexpr BigType& operator++();49 constexpr BigType operator++(int);148 const std::ranges::iota_view<BigType> io; in test()152 static_assert(std::same_as<Iter::value_type, BigType>); in test()
30 struct BigType { struct41 testType<BigType>(); in test() argument
42 struct BigType { char buff[8]; }; argument57 testType<BigType>(); in test()