Lines Matching +full:3 +full:d

62   constexpr size_t D = std::dynamic_extent;
66 test_construction<std::extents<T, 3>, Test>(std::array<TArg, 1>{3});
67 test_construction<std::extents<T, D>, Test>(std::array<TArg, 1>{3});
69 test_construction<std::extents<T, 3, 7>, Test>(std::array<TArg, 2>{3, 7});
70 test_construction<std::extents<T, 3, D>, Test>(std::array<TArg, 2>{3, 7});
71 test_construction<std::extents<T, D, 7>, Test>(std::array<TArg, 2>{3, 7});
72 test_construction<std::extents<T, D, D>, Test>(std::array<TArg, 2>{3, 7});
74 test_construction<std::extents<T, 3, 7, 9>, Test>(std::array<TArg, 3>{3, 7, 9});
75 test_construction<std::extents<T, 3, 7, D>, Test>(std::array<TArg, 3>{3, 7, 9});
76 test_construction<std::extents<T, 3, D, D>, Test>(std::array<TArg, 3>{3, 7, 9});
77 test_construction<std::extents<T, D, 7, D>, Test>(std::array<TArg, 3>{3, 7, 9});
78 test_construction<std::extents<T, D, D, D>, Test>(std::array<TArg, 3>{3, 7, 9});
79 test_construction<std::extents<T, 3, D, 9>, Test>(std::array<TArg, 3>{3, 7, 9});
80 test_construction<std::extents<T, D, D, 9>, Test>(std::array<TArg, 3>{3, 7, 9});
81 test_construction<std::extents<T, D, 7, 9>, Test>(std::array<TArg, 3>{3, 7, 9});
83 test_construction<std::extents<T, 1, 2, 3, 4, 5, 6, 7, 8, 9>, Test>(std::array<TArg, 9>{1, 2, 3, 4, 5, 6, 7, 8, 9});
84 test_construction<std::extents<T, D, 2, 3, D, 5, D, 7, D, 9>, Test>(std::array<TArg, 9>{1, 2, 3, 4, 5, 6, 7, 8, 9});
85 test_construction<std::extents<T, D, D, D, D, D, D, D, D, D>, Test>(std::array<TArg, 9>{1, 2, 3, 4, 5, 6, 7, 8, 9});