Searched refs:data_handle_type (Results 1 – 3 of 3) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__mdspan/ |
| H A D | mdspan.h | 89 using data_handle_type = typename accessor_type::data_handle_type; variable 106 requires((extents_type::rank_dynamic() > 0) && is_default_constructible_v<data_handle_type> && 117 _LIBCPP_HIDE_FROM_ABI explicit constexpr mdspan(data_handle_type __p, _OtherIndexTypes... __exts) in mdspan() 126 …_LIBCPP_HIDE_FROM_ABI constexpr mdspan(data_handle_type __p, const array<_OtherIndexType, _Size>& … in mdspan() 135 … _LIBCPP_HIDE_FROM_ABI constexpr mdspan(data_handle_type __p, span<_OtherIndexType, _Size> __exts) in mdspan() 138 _LIBCPP_HIDE_FROM_ABI constexpr mdspan(data_handle_type __p, const extents_type& __exts) in mdspan() 142 _LIBCPP_HIDE_FROM_ABI constexpr mdspan(data_handle_type __p, const mapping_type& __m) in mdspan() 157 …static_assert(is_constructible_v<data_handle_type, const typename _OtherAccessor::data_handle_type… in requires() 243 …_LIBCPP_HIDE_FROM_ABI constexpr const data_handle_type& data_handle() const noexcept { return __pt… in data_handle() 262 _LIBCPP_NO_UNIQUE_ADDRESS data_handle_type __ptr_{}; [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-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | mdspan | 258 using data_handle_type = ElementType*; 263 constexpr reference access(data_handle_type p, size_t i) const noexcept; 264 constexpr data_handle_type offset(data_handle_type p, size_t i) const noexcept; 284 using data_handle_type = typename accessor_type::data_handle_type; 299 constexpr explicit mdspan(data_handle_type ptr, OtherIndexTypes... exts); 302 mdspan(data_handle_type p, span<OtherIndexType, N> exts); 305 mdspan(data_handle_type p, const array<OtherIndexType, N>& exts); 306 constexpr mdspan(data_handle_type p, const extents_type& ext); 307 constexpr mdspan(data_handle_type p, const mapping_type& m); 357 data_handle_type ptr_; // exposition only [all …]
|