Lines Matching defs:__p
116 _LIBCPP_HIDE_FROM_ABI explicit constexpr mdspan(data_handle_type __p, _OtherIndexTypes... __exts)
117 : __ptr_(std::move(__p)), __map_(extents_type(static_cast<index_type>(std::move(__exts))...)), __acc_{} {}
125 _LIBCPP_HIDE_FROM_ABI constexpr mdspan(data_handle_type __p, const array<_OtherIndexType, _Size>& __exts)
126 : __ptr_(std::move(__p)), __map_(extents_type(__exts)), __acc_{} {}
134 _LIBCPP_HIDE_FROM_ABI constexpr mdspan(data_handle_type __p, span<_OtherIndexType, _Size> __exts)
135 : __ptr_(std::move(__p)), __map_(extents_type(__exts)), __acc_{} {}
137 _LIBCPP_HIDE_FROM_ABI constexpr mdspan(data_handle_type __p, const extents_type& __exts)
139 : __ptr_(std::move(__p)), __map_(__exts), __acc_{} {}
141 _LIBCPP_HIDE_FROM_ABI constexpr mdspan(data_handle_type __p, const mapping_type& __m)
143 : __ptr_(std::move(__p)), __map_(__m), __acc_{} {}
145 _LIBCPP_HIDE_FROM_ABI constexpr mdspan(data_handle_type __p, const mapping_type& __m, const accessor_type& __a)
146 : __ptr_(std::move(__p)), __map_(__m), __acc_(__a) {}