Lines Matching refs:span
52 std::span<int> sp{a1}; // static-extent std::span in tests()
53 std::span<std::byte> writable_sp = os::reinterpret_span_cast<std::byte>(sp); in tests()
54 std::span<const std::byte> nonwritable_sp = os::reinterpret_span_cast<const std::byte>(sp); in tests()
62 std::span<std::byte> sp{vec}; // dynamic-extent std::span in tests()
63 std::span<A> span_a = os::reinterpret_span_cast<A>(sp); in tests()
70 std::span<A> span_a = arr; in tests()
71 std::span<B> span_b = os::reinterpret_span_cast<B>(span_a); in tests()
78 std::span<B> span_b = array; in tests()
79 std::span<C> span_c = os::reinterpret_span_cast<C>(span_b); in tests()
86 std::span<C> span_c = array; in tests()
87 std::span<B> span_b = os::reinterpret_span_cast<B>(span_c); in tests()
92 std::span<std::uint8_t> sp = buf; in tests()
93 std::span<D> span_d = os::reinterpret_span_cast<D>(sp); in tests()
107 std::span<A> span_a = {array, 2}; in trapping_test()
109 std::span<B> span_b = os::reinterpret_span_cast<B>(span_a); in trapping_test()