HomeSort by relevance Sort by last modified time
    Searched refs:smart_copy (Results 1 - 7 of 7) sorted by null

  /external/eigen/Eigen/src/SparseCore/
CompressedStorage.h 56 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());
239 internal::smart_copy(m_indices, m_indices+copySize, newIndices.ptr());
SparseBlock.h 150 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, newdata.valuePtr() + start);
154 internal::smart_copy(tmp.innerIndexPtr() + tmp_start, tmp.innerIndexPtr() + tmp_start + nnz, newdata.indexPtr() + start);
156 internal::smart_copy(matrix.valuePtr()+end, matrix.valuePtr()+end + tail_size, newdata.valuePtr()+start+nnz);
157 internal::smart_copy(matrix.innerIndexPtr()+end, matrix.innerIndexPtr()+end + tail_size, newdata.indexPtr()+start+nnz);
178 internal::smart_copy(tmp.valuePtr() + tmp_start, tmp.valuePtr() + tmp_start + nnz, matrix.valuePtr() + start);
179 internal::smart_copy(tmp.innerIndexPtr() + tmp_start, tmp.innerIndexPtr() + tmp_start + nnz, matrix.innerIndexPtr() + start);
SparseMatrix.h 768 internal::smart_copy(other.m_outerIndex, other.m_outerIndex + m_outerSize + 1, m_outerIndex);
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorStorage.h 99 internal::smart_copy(other.m_data, other.m_data+internal::array_prod(other.m_dimensions), m_data);
  /external/eigen/unsupported/Eigen/CXX11/src/util/
EmulateArray.h 124 internal::smart_copy(l.begin(), l.end(), values);
  /external/eigen/Eigen/src/Core/
DenseStorage.h 359 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/Eigen/src/Core/util/
Memory.h 481 // std::copy is much slower than memcpy, so let's introduce a smart_copy which
485 template<typename T> EIGEN_DEVICE_FUNC void smart_copy(const T* start, const T* end, T* target) function in namespace:Eigen::internal
    [all...]

Completed in 125 milliseconds