Home
last modified time | relevance | path

Searched refs:smart_copy (Results 1 – 7 of 7) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
DCompressedStorage.h56 internal::smart_copy(other.m_values, other.m_values + m_size, m_values);
57 internal::smart_copy(other.m_indices, other.m_indices + m_size, m_indices);
186 internal::smart_copy(m_values, m_values +id, newValues.ptr());
187 internal::smart_copy(m_indices, m_indices+id, newIndices.ptr());
192 internal::smart_copy(m_values +id, m_values +m_size, newValues.ptr() +id+1);
193 internal::smart_copy(m_indices+id, m_indices+m_size, newIndices.ptr()+id+1);
238 internal::smart_copy(m_values, m_values+copySize, newValues.ptr()); in reallocate()
239 internal::smart_copy(m_indices, m_indices+copySize, newIndices.ptr()); in reallocate()
DSparseBlock.h150 …internal::smart_copy(m_matrix.valuePtr(), m_matrix.valuePtr() + start, newdata.valuePtr…
151 …internal::smart_copy(m_matrix.innerIndexPtr(), m_matrix.innerIndexPtr() + start, newdata.indexPtr…
153 …internal::smart_copy(tmp.valuePtr() + tmp_start, tmp.valuePtr() + tmp_start + nnz, newd…
154 …internal::smart_copy(tmp.innerIndexPtr() + tmp_start, tmp.innerIndexPtr() + tmp_start + nnz, newd…
156 …internal::smart_copy(matrix.valuePtr()+end, matrix.valuePtr()+end + tail_size, newdata.…
157 …internal::smart_copy(matrix.innerIndexPtr()+end, matrix.innerIndexPtr()+end + tail_size, newdata.…
178 …internal::smart_copy(tmp.valuePtr() + tmp_start, tmp.valuePtr() + tmp_start + nnz, matr…
179 …internal::smart_copy(tmp.innerIndexPtr() + tmp_start, tmp.innerIndexPtr() + tmp_start + nnz, matr…
DSparseMatrix.h768 … internal::smart_copy(other.m_outerIndex, other.m_outerIndex + m_outerSize + 1, m_outerIndex);
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorStorage.h99 … internal::smart_copy(other.m_data, other.m_data+internal::array_prod(other.m_dimensions), m_data); in TensorStorage()
/external/eigen/Eigen/src/Core/
DDenseStorage.h359 internal::smart_copy(other.m_data, other.m_data+other.m_rows*other.m_cols, m_data);
439 internal::smart_copy(other.m_data, other.m_data+_Rows*m_cols, m_data);
513 internal::smart_copy(other.m_data, other.m_data+other.m_rows*_Cols, m_data);
/external/eigen/unsupported/Eigen/CXX11/src/util/
DEmulateArray.h124 internal::smart_copy(l.begin(), l.end(), values); in array()
/external/eigen/Eigen/src/Core/util/
DMemory.h485 template<typename T> EIGEN_DEVICE_FUNC void smart_copy(const T* start, const T* end, T* target) in smart_copy() function