Home
last modified time | relevance | path

Searched refs:const_entry_proxy (Results 1 – 6 of 6) sorted by relevance

/dports/math/viennacl/ViennaCL-1.7.1/viennacl/tools/
H A Dentry_proxy.hpp179 class const_entry_proxy class
181 typedef const_entry_proxy<NumericT> self_type;
190 explicit const_entry_proxy(vcl_size_t mem_offset, in const_entry_proxy() function in viennacl::const_entry_proxy
/dports/math/viennacl/ViennaCL-1.7.1/viennacl/detail/
H A Dvector_def.hpp216 const_entry_proxy<NumericT> operator()(size_type index) const;
218 const_entry_proxy<NumericT> operator[](size_type index) const;
H A Dmatrix_def.hpp191 const_entry_proxy<NumericT> operator()(size_type row_index, size_type col_index) const;
/dports/math/viennacl/ViennaCL-1.7.1/viennacl/
H A Dvector.hpp145 result = const_entry_proxy<NumericT>(start_ + index_ * stride(), elements_); in operator *()
580 const_entry_proxy<NumericT> vector_base<NumericT, SizeT, DistanceT>::operator()(size_type index) co… in operator ()()
585 return const_entry_proxy<NumericT>(start_ + stride_ * index, elements_); in operator ()()
589 const_entry_proxy<NumericT> vector_base<NumericT, SizeT, DistanceT>::operator[](size_type index) co… in operator []()
594 return const_entry_proxy<NumericT>(start_ + stride_ * index, elements_); in operator []()
H A Dforwards.h236 class const_entry_proxy; variable
H A Dmatrix.hpp487 const_entry_proxy<NumericT> matrix_base<NumericT, SizeT, DistanceT>::operator()(size_type row_index… in operator ()()
490 …return const_entry_proxy<NumericT>(row_major::mem_index(start1_ + stride1_ * row_index, start2_ + … in operator ()()
491 …return const_entry_proxy<NumericT>(column_major::mem_index(start1_ + stride1_ * row_index, start2_… in operator ()()