Searched refs:m_fastPatchStride (Results 1 – 3 of 3) sorted by relevance
298 m_fastPatchStride = internal::TensorIntDivisor<Index>(m_patchStride);327 const Index patchIndex = index / m_fastPatchStride;333 …ch2DIndex = (NumDims == 4) ? patchIndex : (index - otherIndex * m_otherStride) / m_fastPatchStride;373 const Index patchIndex = indices[0] / m_fastPatchStride;374 if (patchIndex != indices[1] / m_fastPatchStride) {384 …ndex = (NumDims == 4) ? patchIndex : (indices[0] - otherIndex * m_otherStride) / m_fastPatchStride;385 eigen_assert(patch2DIndex == (indices[1] - otherIndex * m_otherStride) / m_fastPatchStride);478 internal::TensorIntDivisor<Index> m_fastPatchStride;
325 m_fastPatchStride = internal::TensorIntDivisor<Index>(m_patchStride);356 const Index patchIndex = index / m_fastPatchStride;364 …ch3DIndex = (NumDims == 5) ? patchIndex : (index - otherIndex * m_otherStride) / m_fastPatchStride;420 const Index patchIndex = indices[0] / m_fastPatchStride;421 if (patchIndex != indices[1] / m_fastPatchStride) {431 …ndex = (NumDims == 5) ? patchIndex : (indices[0] - otherIndex * m_otherStride) / m_fastPatchStride;432 eigen_assert(patch3DIndex == (indices[1] - otherIndex * m_otherStride) / m_fastPatchStride);589 internal::TensorIntDivisor<Index> m_fastPatchStride;
217 m_fastPatchStride = internal::TensorIntDivisor<Index>(m_patchStride); in CustomTensorEvaluator()254 const Index patchIndex = index / m_fastPatchStride; in coeff()266 : (index - otherIndex * m_otherStride) / m_fastPatchStride; in coeff()345 const Index patchIndex = indices[0] / m_fastPatchStride; in packet()346 if (patchIndex != indices[1] / m_fastPatchStride) { in packet()361 : (indices[0] - otherIndex * m_otherStride) / m_fastPatchStride; in packet()363 (indices[1] - otherIndex * m_otherStride) / m_fastPatchStride); in packet()619 internal::TensorIntDivisor<Index> m_fastPatchStride; member