Searched defs:m_patchStride (Results 1 - 2 of 2) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorImagePatch.h283 m_patchStride = m_colStride * m_dimensions[2] * m_dimensions[0];
284 m_otherStride = m_patchStride * m_dimensions[3];
287 m_patchStride = m_colStride * m_dimensions[NumDims-3] * m_dimensions[NumDims-1];
288 m_otherStride = m_patchStride * m_dimensions[NumDims-4];
298 m_fastPatchStride = internal::TensorIntDivisor<Index>(m_patchStride);
329 const Index patchOffset = (index - patchIndex * m_patchStride) / m_fastOutputDepth;
381 const Index patchOffsets[2] = {(indices[0] - patchIndex * m_patchStride) / m_fastOutputDepth,
382 (indices[1] - patchIndex * m_patchStride) / m_fastOutputDepth};
462 Index m_patchStride; member in struct:Eigen::TensorEvaluator
H A DTensorVolumePatch.h306 m_patchStride = m_colStride * m_dimensions[3] * m_dimensions[0];
307 m_otherStride = m_patchStride * m_dimensions[4];
311 m_patchStride = m_colStride * m_dimensions[NumDims-4] * m_dimensions[NumDims-1];
312 m_otherStride = m_patchStride * m_dimensions[NumDims-5];
325 m_fastPatchStride = internal::TensorIntDivisor<Index>(m_patchStride);
360 const Index patchOffset = (index - patchIndex * m_patchStride) / m_fastOutputDepth;
428 const Index patchOffsets[2] = {(indices[0] - patchIndex * m_patchStride) / m_fastOutputDepth,
429 (indices[1] - patchIndex * m_patchStride) / m_fastOutputDepth};
578 Index m_patchStride; member in struct:Eigen::TensorEvaluator

Completed in 44 milliseconds