Home
last modified time | relevance | path

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

/external/eigen/bench/btl/libs/eigen3/
Deigen3_interface.hh124 int alignedEnd = starti; in triassign() local
126 alignedEnd = alignedStart + ((size-alignedStart)/(2*PacketSize))*(PacketSize*2); in triassign()
138 for (int index = alignedStart; index<alignedEnd; index+=PacketSize) in triassign()
147 for (int index = alignedEnd; index<size; ++index) in triassign()
/external/eigen/Eigen/src/Core/
DAssign.h404 const Index alignedEnd = alignedStart + ((size-alignedStart)/packetSize)*packetSize;
408 for(Index index = alignedStart; index < alignedEnd; index += packetSize)
413 unaligned_assign_impl<>::run(src,dst,alignedEnd,size);
465 const Index alignedEnd = alignedStart + ((innerSize-alignedStart) & ~packetAlignedMask);
471 for(Index inner = alignedStart; inner<alignedEnd; inner+=packetSize)
475 for(Index inner = alignedEnd; inner<innerSize ; ++inner)
DRedux.h212 const Index alignedEnd = alignedStart + alignedSize;
227 if(alignedEnd>alignedEnd2)
235 for(Index index = alignedEnd; index < size; ++index)
/external/eigen/Eigen/src/Jacobi/
DJacobi.h330 Index alignedEnd = alignedStart + ((size-alignedStart)/PacketSize)*PacketSize; in apply_rotation_in_the_plane() local
349 for(Index i=alignedStart; i<alignedEnd; i+=PacketSize) in apply_rotation_in_the_plane()
375 if(alignedEnd!=peelingEnd) in apply_rotation_in_the_plane()
384 for(Index i=alignedEnd; i<size; ++i) in apply_rotation_in_the_plane()
/external/eigen/Eigen/src/Core/products/
DSelfadjointMatrixVector.h98 size_t alignedEnd = alignedStart + ((endi-alignedStart)/(PacketSize))*(PacketSize); in run() local
126 for (size_t i=alignedStart; i<alignedEnd; i+=PacketSize) in run()
138 for (size_t i=alignedEnd; i<endi; i++) in run()
/external/eigen/doc/
DInsideEigenExample.dox342 const int alignedEnd = alignedStart + ((size-alignedStart)/packetSize)*packetSize;
347 for(int index = alignedStart; index < alignedEnd; index += packetSize)
352 for(int index = alignedEnd; index < size; index++)
364 …o we'll have to copy the last 2 coefficients one by one, not by packets. Here, \a alignedEnd is 48.
370 for(int index = alignedStart; index < alignedEnd; index += packetSize)
477 for(int index = alignedStart; index < alignedEnd; index += packetSize)
486 for(int index = alignedEnd; index < size; index++)