Searched refs:data_handle_type (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__mdspan/ |
H A D | mdspan.h | 88 using data_handle_type = typename accessor_type::data_handle_type; variable 105 requires((extents_type::rank_dynamic() > 0) && is_default_constructible_v<data_handle_type> && 116 _LIBCPP_HIDE_FROM_ABI explicit constexpr mdspan(data_handle_type __p, _OtherIndexTypes... __exts) in mdspan() 125 …_LIBCPP_HIDE_FROM_ABI constexpr mdspan(data_handle_type __p, const array<_OtherIndexType, _Size>& … in mdspan() 134 … _LIBCPP_HIDE_FROM_ABI constexpr mdspan(data_handle_type __p, span<_OtherIndexType, _Size> __exts) in mdspan() 137 _LIBCPP_HIDE_FROM_ABI constexpr mdspan(data_handle_type __p, const extents_type& __exts) in mdspan() 141 _LIBCPP_HIDE_FROM_ABI constexpr mdspan(data_handle_type __p, const mapping_type& __m) in mdspan() 145 …_LIBCPP_HIDE_FROM_ABI constexpr mdspan(data_handle_type __p, const mapping_type& __m, const access… in mdspan() 156 …static_assert(is_constructible_v<data_handle_type, const typename _OtherAccessor::data_handle_type… in requires() 242 …_LIBCPP_HIDE_FROM_ABI constexpr const data_handle_type& data_handle() const noexcept { return __pt… in data_handle() [all …]
|
H A D | default_accessor.h | 47 using data_handle_type = _ElementType*; member 54 …_LIBCPP_HIDE_FROM_ABI constexpr reference access(data_handle_type __p, size_t __i) const noexcept … in access() 55 …_LIBCPP_HIDE_FROM_ABI constexpr data_handle_type offset(data_handle_type __p, size_t __i) const no… in offset()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | mdspan | 262 using data_handle_type = ElementType*; 267 constexpr reference access(data_handle_type p, size_t i) const noexcept; 268 constexpr data_handle_type offset(data_handle_type p, size_t i) const noexcept; 288 using data_handle_type = typename accessor_type::data_handle_type; 303 constexpr explicit mdspan(data_handle_type ptr, OtherIndexTypes... exts); 306 mdspan(data_handle_type p, span<OtherIndexType, N> exts); 309 mdspan(data_handle_type p, const array<OtherIndexType, N>& exts); 310 constexpr mdspan(data_handle_type p, const extents_type& ext); 311 constexpr mdspan(data_handle_type p, const mapping_type& m); 312 constexpr mdspan(data_handle_type p, const mapping_type& m, const accessor_type& a); [all …]
|